Ask HN: documentation format?
11–16 of 16 posts
Re: Ask HN: documentation format?
#12Depends on the type of documentation, but I'm a fan of LaTeX since there are so many tex2____ programs out there that'll convert LaTeX to whatever format you want. The learning curve is steeper but the flexibility is high.
Bonus for being able to render mathematics in your docs.
Edit -- Also, I agree with you about the learning curve. Although it's very easy to get good-looking docs if you use one of the canned documentclasses and built-in commands, once you start to stray from those you're in deep water very quickly.
Re: Ask HN: documentation format?
#13POD. Learn it in 10 minutes. Generates all formats. Embeddable in code, if appropriate. http://perldoc.perl.org/perlpod.html
The POD docs I see as html are just single long html pages. I realize this is just an implementation issue though.
Re: Ask HN: documentation format?
#14there's an open source format (not software) that is pretty comprehesive (though at times repetitive): http://readyset.tigris.org/
Re: Ask HN: documentation format?
#15http://docutils.sourceforge.net/ is quite nice: A rich set of features, easily extensible by custom directives, Python, and a hell lot of export formats (LaTeX/PDF, HTML, S5 slideshows, ...).
Thanks for the heads-up.
Re: Ask HN: documentation format?
#16there's an open source format (not software) that is pretty comprehesive (though at times repetitive): http://readyset.tigris.org/
Those seem to just be a collection of html files where you can edit them and fill in the blanks. I guess if you like having your docs in raw html, it could be useful for those who have a hard time choosing where to begin. Thanks.