2020-12-07 00:58:07 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
mkdir -p ./html
|
2020-12-07 01:37:46 +00:00
|
|
|
mkdir -p ./html/standings
|
2020-12-07 00:58:07 +00:00
|
|
|
|
|
|
|
pandoc -s ./index.md -c index.css -o ./html/index.html --metadata title="Monads Charity Chess Cup 2020"
|
2020-12-07 01:37:46 +00:00
|
|
|
pandoc -s ./standings.md -c index.css -o ./html/standings/index.html --metadata title="Monads Charity Chess Cup 2020 Standings"
|
2020-12-07 00:58:07 +00:00
|
|
|
|
|
|
|
cp ./index.css ./html/index.css
|
2020-12-07 01:37:46 +00:00
|
|
|
cp ./index.css ./html/standings/index.css
|