Simple HTML Generation https://minihtml.trendels.name/
at main 229 lines 2.6 kB view raw
1# Source: https://html.spec.whatwg.org/ 2tags: 3 # 4 # The document element 5 # 6 html: 7 8 # 9 # Document metadata 10 # 11 head: 12 title: 13 base: 14 empty: true 15 omit_end_tag: true 16 link: 17 empty: true 18 omit_end_tag: true 19 meta: 20 empty: true 21 omit_end_tag: true 22 style: 23 24 # 25 # Sections 26 # 27 body: 28 article: 29 section: 30 nav: 31 aside: 32 h1: 33 h2: 34 h3: 35 h4: 36 h5: 37 h6: 38 hgroup: 39 header: 40 footer: 41 address: 42 43 # 44 # Grouping content 45 # 46 p: 47 hr: 48 empty: true 49 omit_end_tag: true 50 pre: 51 blockquote: 52 ol: 53 ul: 54 menu: 55 li: 56 dl: 57 dt: 58 dd: 59 figure: 60 figcaption: 61 main: 62 search: 63 div: 64 65 # 66 # Text-level semantics 67 # 68 a: 69 inline: true 70 em: 71 inline: true 72 strong: 73 inline: true 74 small: 75 inline: true 76 s: 77 inline: true 78 cite: 79 inline: true 80 q: 81 inline: true 82 dfn: 83 inline: true 84 abbr: 85 inline: true 86 ruby: 87 inline: true 88 rt: 89 inline: true 90 rp: 91 inline: true 92 data: 93 inline: true 94 time: 95 inline: true 96 code: 97 inline: true 98 var: 99 inline: true 100 samp: 101 inline: true 102 kbd: 103 inline: true 104 sub: 105 inline: true 106 sup: 107 inline: true 108 i: 109 inline: true 110 b: 111 inline: true 112 u: 113 inline: true 114 mark: 115 inline: true 116 bdi: 117 inline: true 118 bdo: 119 inline: true 120 span: 121 inline: true 122 br: 123 empty: true 124 inline: true 125 omit_end_tag: true 126 wbr: 127 empty: true 128 inline: true 129 omit_end_tag: true 130 131 # 132 # Edits 133 # 134 ins: 135 inline: true 136 del: 137 alias: del_ 138 inline: true 139 hidden: true 140 141 # 142 # Embedded content 143 # 144 picture: 145 source: 146 empty: true 147 omit_end_tag: true 148 img: 149 empty: true 150 inline: true 151 omit_end_tag: true 152 iframe: 153 empty: true 154 embed: 155 empty: true 156 omit_end_tag: true 157 object: 158 alias: object_ 159 inline: true 160 video: 161 audio: 162 track: 163 empty: true 164 omit_end_tag: true 165 map: 166 alias: map_ 167 inline: true 168 area: 169 empty: true 170 omit_end_tag: true 171 172 # 173 # Tabular data 174 # 175 table: 176 caption: 177 colgroup: 178 col: 179 empty: true 180 omit_end_tag: true 181 tbody: 182 thead: 183 tfoot: 184 tr: 185 td: 186 th: 187 188 # 189 # Forms 190 # 191 form: 192 label: 193 inline: true 194 input: 195 alias: input_ 196 inline: true 197 empty: true 198 omit_end_tag: true 199 button: 200 inline: true 201 select: 202 inline: true 203 datalist: 204 optgroup: 205 option: 206 textarea: 207 inline: true 208 output: 209 progress: 210 meter: 211 fieldset: 212 legend: 213 214 # 215 # Interactive elements 216 # 217 details: 218 summary: 219 dialog: 220 221 # 222 # Scripting 223 # 224 script: 225 noscript: 226 template: 227 alias: template_ 228 slot: 229 canvas: