Add the 0.18 docs.

This commit is contained in:
Eric Haszlakiewicz
2024-09-15 17:07:58 +00:00
parent b62ea12bd0
commit 22206e8a2b
88 changed files with 17431 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; } ' "$@"