From 362c3265031b91eb78890a515da48b47ca20376d Mon Sep 17 00:00:00 2001 From: HampusM Date: Tue, 14 Dec 2021 12:38:33 +0100 Subject: add Cgit filters --- about-formatting.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 about-formatting.sh (limited to 'about-formatting.sh') 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 -- cgit v1.2.3-18-g5258