summaryrefslogtreecommitdiff
path: root/make-xml.sh
blob: dace25c4fdfb3efbbb5f364c85f70c9c073bf2a7 (plain)
1
2
3
4
5
6
7
8
#!/bin/sh

./list-chapters.sh | while read file
do
	echo "$file"
	./convert.sed "$file" | \
		xsltproc --encoding utf-8 --html convert.xsl - > "${file}.xml"
done