summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore1
-rwxr-xr-xmake-doc.sh8
2 files changed, 9 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..1776ad4
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+doc/*.html
diff --git a/make-doc.sh b/make-doc.sh
new file mode 100755
index 0000000..3b4b12d
--- /dev/null
+++ b/make-doc.sh
@@ -0,0 +1,8 @@
+#!/bin/sh
+which markdown &>/dev/null || echo "Need markdown utility!" >&2
+
+for i in doc/official_installation_guide_??
+do
+ echo $i
+ cat $i | markdown > $i.html
+done