1 #!/bin/sh 2 # 3 # Doxygen markdown doesn't support triple-backticks like github does. 4 # Convert all of those to space-prefixed blocks instead. 5 # 6 awk '/```/ { prefix=!prefix; print ""; next; } { if (prefix) { printf " "; } print $0; } ' "$@"
This page was automatically generated by LXR 0.3.1. • OpenWrt