source code for html website at https://zachdecook.com
1
2
3
4
5
6
|
#!/bin/bash
#Create blog
mkdir tabs ststech
pandoc common.md tabs.md -t html5 -s > tabs/index.html
pandoc common.md ststech.md -t html5 -s > ststech/index.html
pandoc common.md tightchange.md -t html5 -s > tightchange/index.html
|