1pub const DOCTYPE: &str = "<!doctype html>";
2
3pub const VALID_HTML5_TAGS: &[&str] = &[
4 "a",
5 "abbr",
6 "address",
7 "area",
8 "article",
9 "aside",
10 "audio",
11 "b",
12 "base",
13 "bdi",
14 "bdo",
15 "blink",
16 "blockquote",
17 "body",
18 "br",
19 "button",
20 "canvas",
21 "caption",
22 "cite",
23 "code",
24 "col",
25 "colgroup",
26 "data",
27 "datalist",
28 "dd",
29 "del",
30 "details",
31 "dfn",
32 "div",
33 "dl",
34 "dt",
35 "em",
36 "embed",
37 "fieldset",
38 "figcaption",
39 "figure",
40 "footer",
41 "form",
42 "h1",
43 "h2",
44 "h3",
45 "h4",
46 "h5",
47 "h6",
48 "head",
49 "header",
50 "hgroup",
51 "hr",
52 "html",
53 "i",
54 "iframe",
55 "img",
56 "input",
57 "ins",
58 "kbd",
59 "label",
60 "legend",
61 "li",
62 "link",
63 "main",
64 "map",
65 "mark",
66 "marquee",
67 "meta",
68 "meter",
69 "nav",
70 "noscript",
71 "object",
72 "ol",
73 "optgroup",
74 "option",
75 "output",
76 "p",
77 "param",
78 "pre",
79 "progress",
80 "q",
81 "ruby",
82 "s",
83 "samp",
84 "script",
85 "section",
86 "select",
87 "small",
88 "source",
89 "span",
90 "strong",
91 "style",
92 "sub",
93 "summary",
94 "sup",
95 "table",
96 "tbody",
97 "td",
98 "template",
99 "textarea",
100 "tfoot",
101 "th",
102 "thead",
103 "time",
104 "title",
105 "tr",
106 "track",
107 "ul",
108 "var",
109 "video",
110 "wbr",
111];