6 lines
165 B
Bash
6 lines
165 B
Bash
|
#!/bin/bash
|
||
|
set -e
|
||
|
cd -- "$(dirname -- "${BASH_SOURCE[0]}")"
|
||
|
|
||
|
pandoc -o README.html --self-contained --toc --toc-depth=2 --css etc/style/gh-pandoc.min.css README.md
|