9 lines
289 B
Bash
Executable File
9 lines
289 B
Bash
Executable File
#!/bin/bash
|
|
|
|
mkdir -p ./html
|
|
|
|
pandoc -s ./index.md -c index.css -o ./html/index.html --metadata title="Monads Charity Chess Cup 2020"
|
|
pandoc -s ./standings.md -c index.css -o ./html/standings.html --metadata title="Monads Charity Chess Cup 2020 Standings"
|
|
|
|
cp ./index.css ./html/index.css
|