miller/docs6b/docs/morphs
John Kerl ab84ecd561 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-12 13:41:04 -03:00

13 lines
214 B
Bash
Executable file

#!/bin/bash
if [ $# -ge 1 ]; then
for f in $*; do
echo $f ...
./morph < $f > tmp.$f && mv tmp.$f $f
done
else
for f in *.md.in; do
echo $f ...
./morph < $f > tmp.$f && mv tmp.$f $f
done
fi