blob: 936ba03f4a39204bfac9c98a30db369907caa183 (
plain)
1
2
3
4
5
|
#!/bin/sh
txt2tags --encoding utf-8 --css-sugar --style style.css --toc -t xhtml -o INSTALL.html INSTALL.t2t
txt2tags --encoding utf-8 --toc -t txt -o INSTALL INSTALL.t2t
awk '{gsub("\t"," ");print}' INSTALL > ../INSTALL
rm INSTALL
|