January 22, 2013
Tech Pubs Tuesday: Don't Write Directly in HTML
Since most of the documentation you produce is going to be hosted as HTML anyway, you might be wondering: why not just cut out the middleman and write all your documentation in plain HTML? Instead of learning some weird intermediate format that transforms to HTML, wouldn’t it make sense to handcraft whatever markup, CSS, and JS that you need directly?
Actually, since most documentation tools and formats range from mediocre to awful, plain HTML isn’t necessarily a bad choice. I’ve seen some beautiful documentation authored in handcrafted HTML. That said, using a more specialized format will make things easier on you. Here’s why.
First, typing out HTML open and close tags is annoying and breaks your writing flow, even if you have a good text editor or IDE. If you’ve used a lightweight markup language like Markdown or reStructuredText, you know the difference. Creating a new paragraph with newline, newline is more natural than angle-bracket, p, angle-bracket. Creating a bullet list with leading *s is much more natural than typing <ul>s and <li>s.
Second, maybe you do want multiple output formats! Are you sure you don’t want PDF? What about man pages? If you want man pages, you’re going to have to invent some mechanism for transforming your HTML into TROFF (a venal sin), or you’re going to have to write the same material twice (a mortal sin).
Third, and perhaps most important, HTML is deliberately primitive and general-purpose. It lacks the semantics that you want for describing technical documentation. For example, when writing a sophisticated book, you might want things like:
- Real cross-references. You want to create a link that points to a section or an example or a table that automatically updates itself when the thing it references moves, or changes its title.
- Fancy admonitions (warnings, dangers, cautions, notes, tips)
- Fancy titled tables and figures
- Fancy titled code examples
- Automatically generated tables of contents, lists of figures, lists of examples…
- Automatically generated glossaries and indexes. (Okay, who am I kidding? Nobody cares about indexes anymore. Sniff.)
- File inclusions (raw, interpreted, syntax highlighted or not, with line numbers or not, …)
- Replaceable text
- Conditional text (generating different aspects of the book from the same source)
… and so on.
I think my bottom line is, you can get away with writing a small amount of documentation in plain HTML, such as a README or a short install guide. But the larger your book, the harder this gets. The pattern you really want to avoid is:
- Start authoring a substantial book in HTML.
- Part way through, discover that you need some of the features on the list above.
- Start hacking those features in with some kind of special ad-hoc syntax. No worries — it’s not too hard, it’s just one or two “special tags” or “macros”…
- Eventually end up re-inventing a bad version of reStructuredText or Pandoc-flavored Markdown. Except with way more angle brackets.
Don’t be that guy.

Posted by Patrick Becker on Jan. 23, 2013 at 7:51 AM [#]
Posted by Dave Ranney on Jan. 23, 2013 at 10:57 AM [#]
Posted by Ryan Hamilton on Jan. 23, 2013 at 2:20 PM [#]
Posted by Robin Rosenberg on Jan. 23, 2013 at 6:35 PM [#]
Posted by Evan on Jan. 23, 2013 at 9:38 PM [#]