summaryrefslogtreecommitdiff
path: root/cgit/filters/syntax-highlighting.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/syntax-highlighting.sh
parent39b02cf337b2ce0e54d7c045e01eb9931162ba03 (diff)
drop cmark option --safe (noop since 0.29)
Diffstat (limited to 'cgit/filters/syntax-highlighting.sh')
-rwxr-xr-xcgit/filters/syntax-highlighting.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/cgit/filters/syntax-highlighting.sh b/cgit/filters/syntax-highlighting.sh
index 44cd310..98e1f37 100755
--- a/cgit/filters/syntax-highlighting.sh
+++ b/cgit/filters/syntax-highlighting.sh
@@ -31,6 +31,6 @@ case "$(printf '%s' "$EXTENSION" | tr '[:upper:]' '[:lower:]')" in
esac
case "$EXTENSION" in
- md) exec cmark --safe;;
+ md) exec cmark;;
*) exec highlight --force -f -I -O xhtml -S "$EXTENSION" --ordered-list --line-number-ref=n 2>/dev/null;;
esac