From: Chris Burroughs Date: Thu, 17 Jul 2014 13:44:13 +0000 (-0400) Subject: match other common markdown file extensions X-Git-Url: https://gitweb.ps.run/ps-cgit/commitdiff_plain/62affc0e91f3f322f0b7c27f67f527845e857c82 match other common markdown file extensions --- 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 @@ 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; ;;