mirror of
https://github.com/json-c/json-c.git
synced 2026-03-13 18:19:06 +08:00
7 lines
240 B
Bash
Executable File
7 lines
240 B
Bash
Executable File
#!/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; } ' "$@"
|