Add runner to generate html documentation.
Implemented runner which translates each .txt file located in doc/ to html by using markdown. refs #4214
This commit is contained in:
parent
ee63f3fbd8
commit
3a90825f9e
|
@ -0,0 +1,7 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
for filepath in `find ../doc -type f -name "*.txt"`; do
|
||||||
|
markdown $filepath > `dirname $filepath`/`basename $filepath .txt`.html
|
||||||
|
done
|
||||||
|
|
||||||
|
exit 0
|
Loading…
Reference in New Issue