Permalink
Switch branches/tags
Nothing to show
Find file Copy path
Fetching contributors…
Cannot retrieve contributors at this time
executable file 17 lines (10 sloc) 371 Bytes
#!/bin/bash
set -e
extension=".md"
for f in _sources/*$extension; do
filename=$(basename "$f" $extension)
mkdir -p $filename
pandoc "$f" -f markdown+smart --template _templates/page.template -s -o "${filename}/index.html";
done
erb _templates/toc.md.erb > toc.md
pandoc README.md toc.md -f markdown+smart --template _templates/page.template -s -o index.html;