summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortjdgus3537 <tjdgus3537@naver.com>2016-11-02 22:50:59 +0900
committerGitHub <noreply@github.com>2016-11-02 22:50:59 +0900
commitcaf31a769b9b498c293b80aa9914329b7e1a58ee (patch)
tree051e0786fa0de03ce1f813790790328fa5d8d058
parent920112e6404fdc3c8915ffab89e5caf1099b8bf5 (diff)
Add .markdown, .mdown, .mkdn extension to md and markdown
-rw-r--r--ignore/src/types.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/ignore/src/types.rs b/ignore/src/types.rs
index 289821c8..3d15f9cb 100644
--- a/ignore/src/types.rs
+++ b/ignore/src/types.rs
@@ -123,8 +123,8 @@ const DEFAULT_TYPES: &'static [(&'static str, &'static [&'static str])] = &[
("lua", &["*.lua"]),
("m4", &["*.ac", "*.m4"]),
("make", &["gnumakefile", "Gnumakefile", "makefile", "Makefile", "*.mk"]),
- ("markdown", &["*.md"]),
- ("md", &["*.md"]),
+ ("markdown", &["*.markdown", "*.md", "*.mdown", "*.mkdn"]),
+ ("md", &["*.markdown", "*.md", "*.mdown", "*.mkdn"]),
("matlab", &["*.m"]),
("mk", &["mkfile"]),
("ml", &["*.ml"]),