Now the users will be able to enjoy a readable manual even without the
man pages.
One hassle though: I expected links between the pages, and I se none.
Limitation of the converter, or bug in my script?
*.profraw
*.profdata
tests/formal-analysis/*
-man/3monocypher/*.html
+doc/html/*.html
tests/vectors.h
--- /dev/null
+#! /bin/sh
+
+mkdir -p html
+
+for name in $(ls -1 "man/man3/" | sed 's/.3monocypher//' | grep -v "style.css")
+do
+ mandoc \
+ -Oman=%N.%S.html \
+ -Ostyle=style.css \
+ -Thtml man/man3/$name.3monocypher > html/$name.html
+done
+