6 lines
84 B
Bash
6 lines
84 B
Bash
|
#!/bin/sh
|
||
|
set -eu
|
||
|
cd "$(dirname "$0")"/..
|
||
|
set -x
|
||
|
pandoc -o www/index.html README.md
|