summaryrefslogtreecommitdiff
path: root/docs.sh
diff options
context:
space:
mode:
Diffstat (limited to 'docs.sh')
-rwxr-xr-xdocs.sh6
1 files changed, 6 insertions, 0 deletions
diff --git a/docs.sh b/docs.sh
new file mode 100755
index 0000000..81cde33
--- /dev/null
+++ b/docs.sh
@@ -0,0 +1,6 @@
+#!/bin/bash
+markdown README.md > README.html
+for x in docs/*.md; do
+ echo $x
+ markdown $x > $(dirname $x)/$(basename $x .md).html
+done