miller/docs6b/docs/h1foo
John Kerl 11eac853d2
First pass at converting Miller 6 docs from Sphinx to Mkdocs (#616)
* Accept more passing emit cases

* Port docs from sphinx to mkdocs

* iterating

* rephrase internal-link syntax using mkdocs

* iterating
2021-08-04 01:54:01 -04:00

12 lines
214 B
Bash
Executable file

#!/bin/bash
awk '{
if ($0 ~ /.*<h1>.*/) {
sub(/<h1>/, "");
sub(/<\/h1>/, "");
print;
print "----------------------------------------------------------------";
} else {
print $0
}
}' "$@"