2020-07-17 03:46:21 +00:00
|
|
|
#!/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; } ' "$@"
|