Legend
This tool uses enhanced, line-by-line, css-a-like syntax with space indent to generate xhtml markup. You can add tag, ids, classes, a bit of content (at the end after = char) and an additional code (between [ and ]).
tag[additional]#id.class.class=content
=<tag id="id" class="class class" additional>content</tag>
Examples:
h1#logo.summer=Company Name is:
<h1 id="logo" class="summer">Company Name</h1>
input[type="text" name="term"]#query is:
<input id="query" type="text" name="term" />
#root.company is:
<div id="root" class="company"></div>
p.vcard.highlight=Lorem ipsum is:
<p class="vcard highlight">Lorem ipsum</p>
Set hierarchy with spaces. Note that some tags have default additional data eg. for <a> this is href="./" (inserted only if [additional] isn't set).
For the first time use insert sample data and see how it works.