source code for html website at https://zachdecook.com
Diffstat (limited to 'posts/script.sh')
| -rwxr-xr-x | posts/script.sh | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/posts/script.sh b/posts/script.sh index c150775..5482e2c 100755 --- a/posts/script.sh +++ b/posts/script.sh @@ -1,7 +1,10 @@ -#!/bin/bash +#!/bin/sh #Create blog -mkdir -p tabs ststech rms -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 +mkdir -p tabs ststech rms verovio fonts +#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 python3 -m markdown -o html5 < rms.md > rms/index.html +python3 -m markdown -o html5 < verovio.md > verovio/index.html +python3 -m markdown -o html5 < fonts.md > fonts/index.html |