All HTML tag names in a record set
{ a = "a"
, abbr = "abbr"
, address = "address"
, area = "area"
, article = "article"
, aside = "aside"
, audio = "audio"
, b = "b"
, base = "base"
, bdi = "bdi"
, bdo = "bdo"
, blockquote = "blockquote"
, body = "body"
, br = "br"
, button = "button"
, canvas = "canvas"
, caption = "caption"
, cite = "cite"
, code = "code"
, col = "col"
, colgroup = "colgroup"
, data = "data"
, datalist = "datalist"
, dd = "dd"
, del = "del"
, details = "details"
, dfn = "dfn"
, div = "div"
, dl = "dl"
, dt = "dt"
, em = "em"
, embed = "embed"
, 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"
, hr = "hr"
, html = "html"
, i = "i"
, iframe = "iframe"
, img = "img"
, input = "input"
, ins = "ins"
, kbd = "kbd"
, label = "label"
, legend = "legend"
, li = "li"
, link = "link"
, main = "main"
, map = "map"
, mark = "mark"
, meta = "meta"
, meter = "meter"
, nav = "nav"
, noframes = "noframes"
, noscript = "noscript"
, object = "object"
, ol = "ol"
, optgroup = "optgroup"
, option = "option"
, output = "output"
, p = "p"
, param = "param"
, pre = "pre"
, progress = "progress"
, q = "q"
, rp = "rp"
, rt = "rt"
, rtc = "rtc"
, ruby = "ruby"
, s = "s"
, samp = "samp"
, script = "script"
, section = "section"
, select = "select"
, slot = "slot"
, small = "small"
, source = "source"
, span = "span"
, strong = "strong"
, style = "style"
, sub = "sub"
, summary = "summary"
, sup = "sup"
, table = "table"
, tbody = "tbody"
, td = "td"
, template = "template"
, textarea = "textarea"
, tfoot = "tfoot"
, th = "th"
, thead = "thead"
, time = "time"
, title = "title"
, tr = "tr"
, track = "track"
, u = "u"
, ul = "ul"
, var = "var"
, video = "video"
, wbr = "wbr"
}
module HtmlTree.Tags exposing (tag)
{-|
@docs tag
-}
{-| All HTML tag names in a record set
{ a = "a"
, abbr = "abbr"
, address = "address"
, area = "area"
, article = "article"
, aside = "aside"
, audio = "audio"
, b = "b"
, base = "base"
, bdi = "bdi"
, bdo = "bdo"
, blockquote = "blockquote"
, body = "body"
, br = "br"
, button = "button"
, canvas = "canvas"
, caption = "caption"
, cite = "cite"
, code = "code"
, col = "col"
, colgroup = "colgroup"
, data = "data"
, datalist = "datalist"
, dd = "dd"
, del = "del"
, details = "details"
, dfn = "dfn"
, div = "div"
, dl = "dl"
, dt = "dt"
, em = "em"
, embed = "embed"
, 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"
, hr = "hr"
, html = "html"
, i = "i"
, iframe = "iframe"
, img = "img"
, input = "input"
, ins = "ins"
, kbd = "kbd"
, label = "label"
, legend = "legend"
, li = "li"
, link = "link"
, main = "main"
, map = "map"
, mark = "mark"
, meta = "meta"
, meter = "meter"
, nav = "nav"
, noframes = "noframes"
, noscript = "noscript"
, object = "object"
, ol = "ol"
, optgroup = "optgroup"
, option = "option"
, output = "output"
, p = "p"
, param = "param"
, pre = "pre"
, progress = "progress"
, q = "q"
, rp = "rp"
, rt = "rt"
, rtc = "rtc"
, ruby = "ruby"
, s = "s"
, samp = "samp"
, script = "script"
, section = "section"
, select = "select"
, slot = "slot"
, small = "small"
, source = "source"
, span = "span"
, strong = "strong"
, style = "style"
, sub = "sub"
, summary = "summary"
, sup = "sup"
, table = "table"
, tbody = "tbody"
, td = "td"
, template = "template"
, textarea = "textarea"
, tfoot = "tfoot"
, th = "th"
, thead = "thead"
, time = "time"
, title = "title"
, tr = "tr"
, track = "track"
, u = "u"
, ul = "ul"
, var = "var"
, video = "video"
, wbr = "wbr"
}
-}
tag : Tag
tag =
{ a = "a"
, abbr = "abbr"
, address = "address"
, area = "area"
, article = "article"
, aside = "aside"
, audio = "audio"
, b = "b"
, base = "base"
, bdi = "bdi"
, bdo = "bdo"
, blockquote = "blockquote"
, body = "body"
, br = "br"
, button = "button"
, canvas = "canvas"
, caption = "caption"
, cite = "cite"
, code = "code"
, col = "col"
, colgroup = "colgroup"
, data = "data"
, datalist = "datalist"
, dd = "dd"
, del = "del"
, details = "details"
, dfn = "dfn"
, div = "div"
, dl = "dl"
, dt = "dt"
, em = "em"
, embed = "embed"
, 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"
, hr = "hr"
, html = "html"
, i = "i"
, iframe = "iframe"
, img = "img"
, input = "input"
, ins = "ins"
, kbd = "kbd"
, label = "label"
, legend = "legend"
, li = "li"
, link = "link"
, main = "main"
, map = "map"
, mark = "mark"
, meta = "meta"
, meter = "meter"
, nav = "nav"
, noframes = "noframes"
, noscript = "noscript"
, object = "object"
, ol = "ol"
, optgroup = "optgroup"
, option = "option"
, output = "output"
, p = "p"
, param = "param"
, pre = "pre"
, progress = "progress"
, q = "q"
, rp = "rp"
, rt = "rt"
, rtc = "rtc"
, ruby = "ruby"
, s = "s"
, samp = "samp"
, script = "script"
, section = "section"
, select = "select"
, slot = "slot"
, small = "small"
, source = "source"
, span = "span"
, strong = "strong"
, style = "style"
, sub = "sub"
, summary = "summary"
, sup = "sup"
, table = "table"
, tbody = "tbody"
, td = "td"
, template = "template"
, textarea = "textarea"
, tfoot = "tfoot"
, th = "th"
, thead = "thead"
, time = "time"
, title = "title"
, tr = "tr"
, track = "track"
, u = "u"
, ul = "ul"
, var = "var"
, video = "video"
, wbr = "wbr"
}
type alias Tag =
{ a : String
, abbr : String
, address : String
, area : String
, article : String
, aside : String
, audio : String
, b : String
, base : String
, bdi : String
, bdo : String
, blockquote : String
, body : String
, br : String
, button : String
, canvas : String
, caption : String
, cite : String
, code : String
, col : String
, colgroup : String
, data : String
, datalist : String
, dd : String
, del : String
, details : String
, dfn : String
, div : String
, dl : String
, dt : String
, em : String
, embed : String
, fieldset : String
, figcaption : String
, figure : String
, footer : String
, form : String
, h1 : String
, h2 : String
, h3 : String
, h4 : String
, h5 : String
, h6 : String
, head : String
, header : String
, hr : String
, html : String
, i : String
, iframe : String
, img : String
, input : String
, ins : String
, kbd : String
, label : String
, legend : String
, li : String
, link : String
, main : String
, map : String
, mark : String
, meta : String
, meter : String
, nav : String
, noframes : String
, noscript : String
, object : String
, ol : String
, optgroup : String
, option : String
, output : String
, p : String
, param : String
, pre : String
, progress : String
, q : String
, rp : String
, rt : String
, rtc : String
, ruby : String
, s : String
, samp : String
, script : String
, section : String
, select : String
, slot : String
, small : String
, source : String
, span : String
, strong : String
, style : String
, sub : String
, summary : String
, sup : String
, table : String
, tbody : String
, td : String
, template : String
, textarea : String
, tfoot : String
, th : String
, thead : String
, time : String
, title : String
, tr : String
, track : String
, u : String
, ul : String
, var : String
, video : String
, wbr : String
}