summaryrefslogtreecommitdiffstats
path: root/docs/make.sh
diff options
context:
space:
mode:
Diffstat (limited to 'docs/make.sh')
-rwxr-xr-xdocs/make.sh7
1 files changed, 7 insertions, 0 deletions
diff --git a/docs/make.sh b/docs/make.sh
new file mode 100755
index 0000000..b101117
--- /dev/null
+++ b/docs/make.sh
@@ -0,0 +1,7 @@
+#! /bin/bash
+PAGES=(index ethernet features wireless)
+
+for page in ${PAGES[@]}; do
+ rm ${page}.html
+ pandoc -s --toc -w html --email-obfuscation=javascript -c header.css -o ${page}.html $page
+done