match other common markdown file extensions
Chris Burroughs chris.burroughs@gmail.com
Thu, 17 Jul 2014 09:44:13 -0400
1 files changed,
1 insertions(+),
1 deletions(-)
jump to
M
filters/about-formatting.sh
→
filters/about-formatting.sh
@@ -19,7 +19,7 @@ # CGIT_REPO_CLONE_URL ( = repo.clone-url setting )
cd "$(dirname $0)/html-converters/" case "$(printf '%s' "$1" | tr '[:upper:]' '[:lower:]')" in - *.md|*.mkd) exec ./md2html; ;; + *.markdown|*.mdown|*.md|*.mkd) exec ./md2html; ;; *.rst) exec ./rst2html; ;; *.[1-9]) exec ./man2html; ;; *.htm|*.html) exec cat; ;;