diff options
author | Ting-Wei Lan <lantw44@gmail.com> | 2015-03-17 20:48:53 +0800 |
---|---|---|
committer | Ting-Wei Lan <lantw44@gmail.com> | 2015-03-17 20:48:53 +0800 |
commit | 8de4332f3744a977d80f92e4f973dff1f0d2bdef (patch) | |
tree | 863b248258f6deb47d6915b8ff1021b8ca046597 | |
parent | 666e297c306ce33eb9fb5391dc40338c2d676912 (diff) | |
download | configfile-8de4332f3744a977d80f92e4f973dff1f0d2bdef.tar.gz configfile-8de4332f3744a977d80f92e4f973dff1f0d2bdef.tar.zst configfile-8de4332f3744a977d80f92e4f973dff1f0d2bdef.zip |
cgit: 刪除 about-formatting.sh,現在用預設的就行了
-rwxr-xr-x | cgit/about-formatting.sh | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/cgit/about-formatting.sh b/cgit/about-formatting.sh deleted file mode 100755 index 4d7ffcc..0000000 --- a/cgit/about-formatting.sh +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/sh - -# Markdown support requires perl. -# RestructuredText support requires python and docutils. -# Man page support requires groff. - -cd "$(dirname $0)/html-converters/" -case "$(echo "$1" | tr '[:upper:]' '[:lower:]')" in - *.md|*.mkd) exec ./md2html; ;; - *.rst) exec ./rst2html; ;; - *.[1-9]) exec ./man2html; ;; - *.htm|*.html) exec cat; ;; - *.txt|*) exec ./txt2html; ;; -esac |