module ToHtml

Defined in:

attribute_hash.cr
instance_tag_attrs.cr
instance_template.cr
tag_names.cr

Constant Summary

TAG_NAMES = {"a" => "a", "abbr" => "abbr", "address" => "address", "article" => "article", "aside" => "aside", "audio" => "audio", "b" => "b", "bdi" => "bdi", "bdo" => "bdo", "blockquote" => "blockquote", "body" => "body", "button" => "button", "canvas" => "canvas", "caption" => "caption", "cite" => "cite", "code" => "code", "colgroup" => "colgroup", "data" => "data", "datalist" => "datalist", "dd" => "dd", "del" => "del", "details" => "details", "dfn" => "dfn", "dialog" => "dialog", "div" => "div", "dl" => "dl", "dt" => "dt", "em" => "em", "fieldset" => "fieldset", "figcaption" => "figcaption", "figure" => "figure", "footer" => "footer", "form" => "form", "h1" => "h1", "h2" => "h2", "h3" => "h3", "h4" => "h4", "h5" => "h5", "h6" => "h6", "head" => "head", "header" => "header", "html" => "html", "i" => "i", "iframe" => "iframe", "ins" => "ins", "kbd" => "kbd", "label" => "label", "legend" => "legend", "li" => "li", "main" => "main", "map" => "map", "mark" => "mark", "menu" => "menu", "meter" => "meter", "nav" => "nav", "noscript" => "noscript", "object" => "object", "ol" => "ol", "optgroup" => "optgroup", "option" => "option", "output" => "output", "p" => "p", "picture" => "picture", "pre" => "pre", "progress" => "progress", "q" => "q", "rp" => "rp", "rt" => "rt", "ruby" => "ruby", "s" => "s", "samp" => "samp", "script" => "script", "section" => "section", "select_tag" => "select", "small" => "small", "span" => "span", "strong" => "strong", "style" => "style", "sub" => "sub", "summary" => "summary", "sup" => "sup", "svg" => "svg", "table" => "table", "tbody" => "tbody", "td" => "td", "template" => "template", "textarea" => "textarea", "tfoot" => "tfoot", "th" => "th", "thead" => "thead", "time" => "time", "title" => "title", "tr" => "tr", "u" => "u", "ul" => "ul", "var" => "var", "video" => "video"}
VOID_TAG_NAMES = ["area", "base", "br", "col", "embed", "hr", "img", "input", "link", "meta", "param", "source", "track", "wbr"] of ::String

Macro Summary

Macro Detail

macro class_tag_attrs(&blk) #

[View source]
macro class_template(&blk) #

[View source]
macro instance_tag_attrs(&blk) #

[View source]
macro instance_template(&blk) #

[View source]