mirror of
https://github.com/9001/copyparty.git
synced 2026-04-12 23:32:32 -06:00
18 lines
331 B
Bash
18 lines
331 B
Bash
#!/usr/bin/env sh
|
|
|
|
rm ./out -r
|
|
|
|
pandoc ../../README.md \
|
|
--output=out/ \
|
|
--from=gfm \
|
|
--to=chunkedhtml \
|
|
--standalone \
|
|
--table-of-contents \
|
|
--toc-depth=3 \
|
|
--css=./docs.css \
|
|
--chunk-template="%i.html" \
|
|
--template ./template.html \
|
|
--metadata title="readme" \
|
|
--title-prefix="copyparty"
|
|
|
|
cp ./docs.css out/ |