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