Skip to content
Find file
795bb8b
executable file 11 lines (8 sloc) 205 Bytes
# awk post-processor - after pandoc
# re-creates !include sections extracted by tomd_pre.awk
/^!include tomd-include-/ {
while ((getline line < $2) > 0) { print line }
close($2);
next;
}
{ print }
Something went wrong with that request. Please try again.