match other common markdown file extensions

This commit is contained in:
Chris Burroughs 2014-07-17 09:44:13 -04:00 committed by Jason A. Donenfeld
부모 96ceb9a95a
커밋 62affc0e91
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제

파일 보기

@ -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; ;;