vis
a vi-like editor based on Plan 9's structural regular expressions
git clone https://9o.is/git/vis.git
commit beb81e5ffa25c0aae5297a43948b7f950ba6dca6 parent bf221ad3b2685c11d35d5d2497c7eb157c009988 Author: Marc André Tanner <mat@brain-dump.org> Date: Tue, 28 Jan 2020 11:29:54 +0100 build: fix generation of HTML man pages Starting with mandoc version 1.14.2 the xhtml format is no longer an alias for html. Diffstat:
| M | Makefile | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile @@ -123,7 +123,7 @@ dist: clean man: @for m in ${MANUALS}; do \ echo "Generating $$m"; \ - sed -e "s/VERSION/${VERSION}/" "man/$$m" | mandoc -W warning -T utf8 -T xhtml -O man=%N.%S.html -O style=mandoc.css 1> "man/$$m.html" || true; \ + sed -e "s/VERSION/${VERSION}/" "man/$$m" | mandoc -W warning -T utf8 -T html -O man=%N.%S.html -O style=mandoc.css 1> "man/$$m.html" || true; \ done luadoc: