blob: bb3d0005997efa8747690ee3a42024d2e6c81d2f (
plain)
1
2
3
4
5
6
7
|
#! /bin/bash
PAGES=(index features netcfg netcfg-profiles)
for page in ${PAGES[@]}; do
rm ${page}.html
pandoc --toc -w html --email-obfuscation=javascript -B website/header.html -A website/footer.html -o ${page}.html $page
done
|