Updated doc

This commit is contained in:
o9000
2016-05-25 11:54:51 +02:00
parent a5528a4bc1
commit 9cbcca04df
15 changed files with 1759 additions and 45 deletions

13
doc/generate-doc.sh Executable file
View File

@@ -0,0 +1,13 @@
#!/bin/bash
# You can install md2man with gem install md2man. You need gem and ruby-dev.
md2man-roff tint2.md > tint2.1
cat header.html > manual.html
cat tint2.md | sed 's/^# TINT2 .*$/# TINT2/g' | md2man-html >> manual.html
cat footer.html >> manual.html
cat header.html > readme.html
cat ../README.md | sed 's|doc/tint2.md|manual.html|g' | md2man-html >> readme.html
cat footer.html >> readme.html