Bombsquad.DynamicMedia.Markdown.MarkdownMediaTransformerFactory.IsValidFilePath C# (CSharp) Method

IsValidFilePath() protected method

protected IsValidFilePath ( string absolutePath ) : bool
absolutePath string
return bool
        protected override bool IsValidFilePath(string absolutePath)
        {
            return absolutePath.Contains(".md.") || absolutePath.Contains(".markdown.");
        }