basic signup and wiki

This commit is contained in:
root
2019-09-14 14:29:05 -04:00
parent 1e5a430d3a
commit 6ef1fbf131
15 changed files with 12589 additions and 2 deletions

7
wiki/build-wiki.sh Executable file
View File

@@ -0,0 +1,7 @@
#!/bin/sh
for page in source/*.md; do
pagename=$(basename $page ".md")
pandoc --template pandoc-template.html -o "$pagename.html" "source/$pagename.md"
done