mirror of
https://git.zx2c4.com/cgit
synced 2025-08-17 16:01:06 +02:00
match other common markdown file extensions
This commit is contained in:
parent
96ceb9a95a
commit
62affc0e91
1 changed files with 1 additions and 1 deletions
|
@ -19,7 +19,7 @@
|
||||||
|
|
||||||
cd "$(dirname $0)/html-converters/"
|
cd "$(dirname $0)/html-converters/"
|
||||||
case "$(printf '%s' "$1" | tr '[:upper:]' '[:lower:]')" in
|
case "$(printf '%s' "$1" | tr '[:upper:]' '[:lower:]')" in
|
||||||
*.md|*.mkd) exec ./md2html; ;;
|
*.markdown|*.mdown|*.md|*.mkd) exec ./md2html; ;;
|
||||||
*.rst) exec ./rst2html; ;;
|
*.rst) exec ./rst2html; ;;
|
||||||
*.[1-9]) exec ./man2html; ;;
|
*.[1-9]) exec ./man2html; ;;
|
||||||
*.htm|*.html) exec cat; ;;
|
*.htm|*.html) exec cat; ;;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue