1
0
Fork 0
forked from forgejo/forgejo
This commit is contained in:
slene 2014-03-20 21:11:48 +08:00
parent de956c4776
commit 47234f1031
2 changed files with 6 additions and 2 deletions

View file

@ -36,7 +36,7 @@ func isLink(link []byte) bool {
func IsMarkdownFile(name string) bool {
name = strings.ToLower(name)
switch filepath.Ext(name) {
case "md", "markdown", "mdown":
case ".md", ".markdown", ".mdown":
return true
}
return false