Add the 0.16 docs.

This commit is contained in:
Eric Haszlakiewicz
2022-04-14 12:34:00 +00:00
parent 9af901b5b5
commit 76db5740f7
86 changed files with 16696 additions and 1 deletions

View File

@@ -0,0 +1,6 @@
#!/bin/sh
#
# Doxygen markdown doesn't support triple-backticks like github does.
# Convert all of those to space-prefixed blocks instead.
#
awk '/```/ { prefix=!prefix; print ""; next; } { if (prefix) { printf " "; } print $0; } ' "$@"