From b6ff1659e5cb70a3b3a9d7ecb0c87683a54baa7d Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Wed, 18 Dec 2019 23:37:45 -0500 Subject: Hide line numbers when rendering mdoc Hack: output an extra after rendering mdoc so that line numbers can be hidden based on there being three. This required splitting source-filter and about-filter since on about pages there is no table. --- www/git.causal.agency/about-filter.sh | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 www/git.causal.agency/about-filter.sh (limited to 'www/git.causal.agency/about-filter.sh') diff --git a/www/git.causal.agency/about-filter.sh b/www/git.causal.agency/about-filter.sh new file mode 100644 index 00000000..216c86e9 --- /dev/null +++ b/www/git.causal.agency/about-filter.sh @@ -0,0 +1,13 @@ +#!/bin/sh + +case "$1" in + (*.[1-9]) + /usr/bin/mandoc -T utf8 \ + | /usr/local/libexec/ttpre \ + | /usr/bin/sed -E \ + 's,([a-z0-9_-]+)[(]([1-9])[)],&,g' + ;; + (*) + exec /usr/local/libexec/hi -l text -f html + ;; +esac -- cgit 1.4.1