all repos — cgit @ 62affc0e91f3f322f0b7c27f67f527845e857c82

a hyperfast web frontend for git written in c

match other common markdown file extensions
Chris Burroughs chris.burroughs@gmail.com
Thu, 17 Jul 2014 09:44:13 -0400
commit

62affc0e91f3f322f0b7c27f67f527845e857c82

parent

96ceb9a95a7a321209cff347fefd141a9fffc7ca

1 files changed, 1 insertions(+), 1 deletions(-)

jump to
M filters/about-formatting.shfilters/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; ;;