mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-07-30 17:24:16 +02:00
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
7
bin/createdoc.sh
Executable file
7
bin/createdoc.sh
Executable file
@ -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…
x
Reference in New Issue
Block a user