icinga2/doc/mkdoc.sh

20 lines
254 B
Bash
Raw Normal View History

2013-09-26 08:59:29 +02:00
#!/bin/sh
cd -- `dirname $0`
cat <<HTML
<!DOCTYPE html>
<html>
<xmp theme="united" style="display:none;">
HTML
for file in *.md; do
cat $file
echo
done
cat <<HTML
</xmp>
<script src="http://strapdownjs.com/v/0.2/strapdown.js"></script>
</html>
HTML