blob: 06d8f6d81f03f1dcb1c045ab34de09946e787491 (
plain)
1
2
3
4
5
6
7
|
#! /bin/bash
PAGES=(index ethernet features wireless)
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
|