summaryrefslogtreecommitdiff
path: root/cgit/filters/about-formatting.sh
diff options
context:
space:
mode:
authorJonas Smedegaard <dr@jones.dk>2021-04-14 13:06:54 +0200
committerJonas Smedegaard <dr@jones.dk>2021-04-14 13:06:54 +0200
commitb15329fc696389cf946181e602ead40f2dc21225 (patch)
tree7e5de51f65885bf90167d0a052c0323fca07863e /cgit/filters/about-formatting.sh
parent39b02cf337b2ce0e54d7c045e01eb9931162ba03 (diff)
drop cmark option --safe (noop since 0.29)
Diffstat (limited to 'cgit/filters/about-formatting.sh')
-rwxr-xr-xcgit/filters/about-formatting.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/cgit/filters/about-formatting.sh b/cgit/filters/about-formatting.sh
index 83a7bc0..5d2d77b 100755
--- a/cgit/filters/about-formatting.sh
+++ b/cgit/filters/about-formatting.sh
@@ -16,7 +16,7 @@
# CGIT_REPO_CLONE_URL ( = repo.clone-url setting )
case "$(printf '%s' "$1" | tr '[:upper:]' '[:lower:]')" in
- *.markdown|*.mdown|*.md|*.mkd|*.mdwn) exec cmark --safe; ;;
+ *.markdown|*.mdown|*.md|*.mkd|*.mdwn) exec cmark; ;;
*.htm|*.html) exec cat; ;;
*.txt|*) cd /usr/lib/cgit/filters/html-converters; exec ./txt2html; ;;
esac