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