Add the 0.15 docs.

This commit is contained in:
Eric Haszlakiewicz
2020-07-26 15:28:38 +00:00
parent 6a0b2d669f
commit 13a1566d93
85 changed files with 18481 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; } ' "$@"