Add the 0.17 docs.

This commit is contained in:
Eric Haszlakiewicz
2023-08-12 19:10:14 +00:00
parent aff2b83a07
commit 106988e3ae
93 changed files with 17856 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; } ' "$@"