Warning: This module uses immediate macros which are known to cause problems. Do yourself a favor and import the module as from htmlgen import nil and then fully qualify the macros.
This module implements a simple XML and HTML code generator. Each commonly used HTML tag has a corresponding macro that generates a string with its HTML representation.
Example:
var nim = "Nim" echo h1(a(href="http://nim-lang.org", nim))
Writes the string:
<h1><a href="http://nim-lang.org">Nim</a></h1>
Consts
coreAttr = " id class title style "
- Source Edit
eventAttr = " onclick ondblclick onmousedown onmouseup onmouseover onmousemove onmouseout onkeypress onkeydown onkeyup onload "
- Source Edit
commonAttr = " id class title style onclick ondblclick onmousedown onmouseup onmouseover onmousemove onmouseout onkeypress onkeydown onkeyup onload "
- Source Edit
Macros
macro a(e: varargs[untyped]): untyped
- generates the HTML a element. Source Edit
macro acronym(e: varargs[untyped]): untyped
- generates the HTML acronym element. Source Edit
macro address(e: varargs[untyped]): untyped
- generates the HTML address element. Source Edit
macro area(e: varargs[untyped]): untyped
- generates the HTML area element. Source Edit
macro b(e: varargs[untyped]): untyped
- generates the HTML b element. Source Edit
macro base(e: varargs[untyped]): untyped
- generates the HTML base element. Source Edit
macro big(e: varargs[untyped]): untyped
- generates the HTML big element. Source Edit
macro blockquote(e: varargs[untyped]): untyped
- generates the HTML blockquote element. Source Edit
macro body(e: varargs[untyped]): untyped
- generates the HTML body element. Source Edit
macro br(e: varargs[untyped]): untyped
- generates the HTML br element. Source Edit
- generates the HTML button element. Source Edit
macro caption(e: varargs[untyped]): untyped
- generates the HTML caption element. Source Edit
macro cite(e: varargs[untyped]): untyped
- generates the HTML cite element. Source Edit
macro code(e: varargs[untyped]): untyped
- generates the HTML code element. Source Edit
macro col(e: varargs[untyped]): untyped
- generates the HTML col element. Source Edit
macro colgroup(e: varargs[untyped]): untyped
- generates the HTML colgroup element. Source Edit
macro dd(e: varargs[untyped]): untyped
- generates the HTML dd element. Source Edit
macro del(e: varargs[untyped]): untyped
- generates the HTML del element. Source Edit
macro dfn(e: varargs[untyped]): untyped
- generates the HTML dfn element. Source Edit
macro `div`(e: varargs[untyped]): untyped
- generates the HTML div element. Source Edit
macro dl(e: varargs[untyped]): untyped
- generates the HTML dl element. Source Edit
macro dt(e: varargs[untyped]): untyped
- generates the HTML dt element. Source Edit
macro em(e: varargs[untyped]): untyped
- generates the HTML em element. Source Edit
macro fieldset(e: varargs[untyped]): untyped
- generates the HTML fieldset element. Source Edit
macro form(e: varargs[untyped]): untyped
- generates the HTML form element. Source Edit
macro h1(e: varargs[untyped]): untyped
- generates the HTML h1 element. Source Edit
macro h2(e: varargs[untyped]): untyped
- generates the HTML h2 element. Source Edit
macro h3(e: varargs[untyped]): untyped
- generates the HTML h3 element. Source Edit
macro h4(e: varargs[untyped]): untyped
- generates the HTML h4 element. Source Edit
macro h5(e: varargs[untyped]): untyped
- generates the HTML h5 element. Source Edit
macro h6(e: varargs[untyped]): untyped
- generates the HTML h6 element. Source Edit
macro head(e: varargs[untyped]): untyped
- generates the HTML head element. Source Edit
macro html(e: varargs[untyped]): untyped
- generates the HTML html element. Source Edit
macro hr(): untyped
- generates the HTML hr element. Source Edit
macro i(e: varargs[untyped]): untyped
- generates the HTML i element. Source Edit
macro img(e: varargs[untyped]): untyped
- generates the HTML img element. Source Edit
macro input(e: varargs[untyped]): untyped
- generates the HTML input element. Source Edit
macro ins(e: varargs[untyped]): untyped
- generates the HTML ins element. Source Edit
macro kbd(e: varargs[untyped]): untyped
- generates the HTML kbd element. Source Edit
macro label(e: varargs[untyped]): untyped
- generates the HTML label element. Source Edit
macro legend(e: varargs[untyped]): untyped
- generates the HTML legend element. Source Edit
macro li(e: varargs[untyped]): untyped
- generates the HTML li element. Source Edit
macro link(e: varargs[untyped]): untyped
- generates the HTML link element. Source Edit
macro map(e: varargs[untyped]): untyped
- generates the HTML map element. Source Edit
macro meta(e: varargs[untyped]): untyped
- generates the HTML meta element. Source Edit
macro noscript(e: varargs[untyped]): untyped
- generates the HTML noscript element. Source Edit
macro `object`(e: varargs[untyped]): untyped
- generates the HTML object element. Source Edit
macro ol(e: varargs[untyped]): untyped
- generates the HTML ol element. Source Edit
macro optgroup(e: varargs[untyped]): untyped
- generates the HTML optgroup element. Source Edit
macro option(e: varargs[untyped]): untyped
- generates the HTML option element. Source Edit
macro p(e: varargs[untyped]): untyped
- generates the HTML p element. Source Edit
macro param(e: varargs[untyped]): untyped
- generates the HTML param element. Source Edit
macro pre(e: varargs[untyped]): untyped
- generates the HTML pre element. Source Edit
macro q(e: varargs[untyped]): untyped
- generates the HTML q element. Source Edit
macro samp(e: varargs[untyped]): untyped
- generates the HTML samp element. Source Edit
macro script(e: varargs[untyped]): untyped
- generates the HTML script element. Source Edit
macro select(e: varargs[untyped]): untyped
- generates the HTML select element. Source Edit
macro small(e: varargs[untyped]): untyped
- generates the HTML small element. Source Edit
macro span(e: varargs[untyped]): untyped
- generates the HTML span element. Source Edit
macro strong(e: varargs[untyped]): untyped
- generates the HTML strong element. Source Edit
macro style(e: varargs[untyped]): untyped
- generates the HTML style element. Source Edit
macro sub(e: varargs[untyped]): untyped
- generates the HTML sub element. Source Edit
macro sup(e: varargs[untyped]): untyped
- generates the HTML sup element. Source Edit
macro table(e: varargs[untyped]): untyped
- generates the HTML table element. Source Edit
macro tbody(e: varargs[untyped]): untyped
- generates the HTML tbody element. Source Edit
macro td(e: varargs[untyped]): untyped
- generates the HTML td element. Source Edit
macro textarea(e: varargs[untyped]): untyped
- generates the HTML textarea element. Source Edit
macro tfoot(e: varargs[untyped]): untyped
- generates the HTML tfoot element. Source Edit
macro th(e: varargs[untyped]): untyped
- generates the HTML th element. Source Edit
macro thead(e: varargs[untyped]): untyped
- generates the HTML thead element. Source Edit
macro title(e: varargs[untyped]): untyped
- generates the HTML title element. Source Edit
macro tr(e: varargs[untyped]): untyped
- generates the HTML tr element. Source Edit
macro tt(e: varargs[untyped]): untyped
- generates the HTML tt element. Source Edit
macro ul(e: varargs[untyped]): untyped
- generates the HTML ul element. Source Edit
macro `var`(e: varargs[untyped]): untyped
- generates the HTML var element. Source Edit