blob: 544d1f325839c61602ade15a1fa6b04cb38a7a65 (
plain)
1
2
3
4
5
6
7
|
#! /bin/bash
PAGES=(ethernet features wireless)
for page in ${PAGES[@]}; do
rm ${page}.html
pandoc -s --toc -w html --email-obfuscation=javascript -c header.css -o ${page}.html $page
done
|