Add the 0.19 docs.

This commit is contained in:
Eric Hawicz
2026-06-27 09:56:40 -04:00
parent 49790dd1ab
commit 6a79cc54a7
104 changed files with 18562 additions and 1 deletions
+6
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; } ' "$@"