cheliequan
2023-01-13 e25f3e440ed00d597a9802df68adedadb629d814
1
2
3
4
5
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; } ' "$@"