diff options
Diffstat (limited to 'about-formatting.sh')
| -rw-r--r-- | about-formatting.sh | 10 | 
1 files changed, 10 insertions, 0 deletions
| diff --git a/about-formatting.sh b/about-formatting.sh new file mode 100644 index 0000000..d11b738 --- /dev/null +++ b/about-formatting.sh @@ -0,0 +1,10 @@ +#!/bin/sh +cd "$(dirname $0)/html-converters/" + +case "$(printf '%s' "$1" | tr '[:upper:]' '[:lower:]')" in +	*.markdown|*.mdown|*.md|*.mkd) exec /filters/markdown_filter.py; ;; +	*.rst) exec ./rst2html; ;; +	*.[1-9]) exec ./man2html; ;; +	*.htm|*.html) exec cat; ;; +	*.txt|*) exec ./txt2html; ;; +esac | 
