dc53283060
* added first draft of new docs in asciidoc format, needs to be converted properly to roff-format, right now its just a temporary "home" * rename of Coding_style to CODESTYLE
31 lines
700 B
Text
31 lines
700 B
Text
whats this? this is the attempt to write the documentation for
|
|
fluxbox in ascii-doc format. how does it work?
|
|
|
|
well, we just edit fluxbox.txt from this directory. save it.
|
|
then we can produce pretty much any format we like:
|
|
|
|
man:
|
|
|
|
$> asciidoc -b docbook -d manpage fluxbox.txt
|
|
$> xmlto man fluxbox.xml
|
|
|
|
pdf:
|
|
|
|
$> asciidoc -b docbook -d manpage fluxbox.txt
|
|
$> docbook2pdf fluxbox.xml
|
|
|
|
docbook:
|
|
|
|
$> asciidoc -b docbook-sgml -d manpage fluxbox.txt
|
|
|
|
html:
|
|
|
|
$> asciidoc -b xhtml -d manpage fluxbox.txt
|
|
|
|
and many many more ways to do it.
|
|
what do we need? well, at least:
|
|
|
|
http://www.methods.co.nz/asciidoc/
|
|
http://cyberelk.net/tim/xmlto/
|
|
|
|
and the rest of the docbook-family + maybe pdftex.
|