diff options
author | Chris Burroughs | 2014-07-17 09:44:13 -0400 |
---|---|---|
committer | Jason A. Donenfeld | 2014-12-23 19:10:11 -0700 |
commit | 62affc0e91f3f322f0b7c27f67f527845e857c82 (patch) | |
tree | 8f4672f0f9331d6abb367c6635c8d9599565eb08 /filters | |
parent | repolist: add owner-filter (diff) | |
download | cgit-62affc0e91f3f322f0b7c27f67f527845e857c82.tar.gz cgit-62affc0e91f3f322f0b7c27f67f527845e857c82.zip |
match other common markdown file extensions
Diffstat (limited to 'filters')
-rwxr-xr-x | filters/about-formatting.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/filters/about-formatting.sh b/filters/about-formatting.sh index 892fbeb..d024204 100755 --- a/filters/about-formatting.sh +++ b/filters/about-formatting.sh | |||
@@ -19,7 +19,7 @@ | |||
19 | 19 | ||
20 | cd "$(dirname $0)/html-converters/" | 20 | cd "$(dirname $0)/html-converters/" |
21 | case "$(printf '%s' "$1" | tr '[:upper:]' '[:lower:]')" in | 21 | case "$(printf '%s' "$1" | tr '[:upper:]' '[:lower:]')" in |
22 | *.md|*.mkd) exec ./md2html; ;; | 22 | *.markdown|*.mdown|*.md|*.mkd) exec ./md2html; ;; |
23 | *.rst) exec ./rst2html; ;; | 23 | *.rst) exec ./rst2html; ;; |
24 | *.[1-9]) exec ./man2html; ;; | 24 | *.[1-9]) exec ./man2html; ;; |
25 | *.htm|*.html) exec cat; ;; | 25 | *.htm|*.html) exec cat; ;; |