Added docs

This commit is contained in:
Collin R
2020-02-05 08:38:50 -08:00
parent f07483e68a
commit a0462d3bda
3 changed files with 134 additions and 1 deletions

8
docs/run.sh Executable file
View File

@@ -0,0 +1,8 @@
#!/usr/bin/env bash
docfiles=( $(ls *.md) )
for fname in "${docfiles[@]}"; do
outname="${fname/%md/html}"
pandoc -s -f gfm -t html $fname -o $outname --metadata pagetitle="$outname"
open $outname
done