cheliequan
2023-01-16 382be0b170230274bb18c66dd42146b255d7245a
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; } ' "$@"