source code for html website at https://zachdecook.com
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh
#Create blog
mkdir -p tabs ststech rms verovio fonts foss
#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
cat common.md tightchange.md | python3 -m markdown -o html5 > tightchange/index.html
cat common.md rms.md | python3 -m markdown -o html5 -x footnotes > rms/index.html
python3 -m markdown -o html5 < verovio.md > verovio/index.html
python3 -m markdown -o html5 -x attr_list < fonts.md > fonts/index.html
cat common.md daily-driver.md | python3 -m markdown -o html5 > daily-driver/index.html
cat foss.md | python3 -m markdown -o html5 -x md_in_html > foss/index.html
|