-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhtml.js
124 lines (120 loc) · 5.52 KB
/
html.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
// NOTE: Tags in this file are pulled from the WHATWG HTML Living Standard.
// https://html.spec.whatwg.org/multipage/indices.html#elements-3
// NOTE: /* @__PURE__ */ annotations inform tools like ESBuild, Rollup, and
// Uglify that these function calls do not produce side effects and can safely
// be removed when unused.
import { h } from './h'
export { h, text } from './h'
export const a = /* @__PURE__ */ h('a')
export const abbr = /* @__PURE__ */ h('abbr')
export const address = /* @__PURE__ */ h('address')
export const area = /* @__PURE__ */ h('area')
export const article = /* @__PURE__ */ h('article')
export const aside = /* @__PURE__ */ h('aside')
export const audio = /* @__PURE__ */ h('audio')
export const b = /* @__PURE__ */ h('b')
export const base = /* @__PURE__ */ h('base')
export const bdi = /* @__PURE__ */ h('bdi')
export const bdo = /* @__PURE__ */ h('bdo')
export const blockquote = /* @__PURE__ */ h('blockquote')
export const body = /* @__PURE__ */ h('body')
export const br = /* @__PURE__ */ h('br')
export const button = /* @__PURE__ */ h('button')
export const canvas = /* @__PURE__ */ h('canvas')
export const caption = /* @__PURE__ */ h('caption')
export const cite = /* @__PURE__ */ h('cite')
export const code = /* @__PURE__ */ h('code')
export const col = /* @__PURE__ */ h('col')
export const colgroup = /* @__PURE__ */ h('colgroup')
export const data = /* @__PURE__ */ h('data')
export const datalist = /* @__PURE__ */ h('datalist')
export const dd = /* @__PURE__ */ h('dd')
export const del = /* @__PURE__ */ h('del')
export const details = /* @__PURE__ */ h('details')
export const dfn = /* @__PURE__ */ h('dfn')
export const dialog = /* @__PURE__ */ h('dialog')
export const div = /* @__PURE__ */ h('div')
export const dl = /* @__PURE__ */ h('dl')
export const dt = /* @__PURE__ */ h('dt')
export const em = /* @__PURE__ */ h('em')
export const embed = /* @__PURE__ */ h('embed')
export const fieldset = /* @__PURE__ */ h('fieldset')
export const figcaption = /* @__PURE__ */ h('figcaption')
export const figure = /* @__PURE__ */ h('figure')
export const footer = /* @__PURE__ */ h('footer')
export const form = /* @__PURE__ */ h('form')
export const h1 = /* @__PURE__ */ h('h1')
export const h2 = /* @__PURE__ */ h('h2')
export const h3 = /* @__PURE__ */ h('h3')
export const h4 = /* @__PURE__ */ h('h4')
export const h5 = /* @__PURE__ */ h('h5')
export const h6 = /* @__PURE__ */ h('h6')
export const head = /* @__PURE__ */ h('head')
export const header = /* @__PURE__ */ h('header')
export const hgroup = /* @__PURE__ */ h('hgroup')
export const hr = /* @__PURE__ */ h('hr')
export const html = /* @__PURE__ */ h('html')
export const i = /* @__PURE__ */ h('i')
export const iframe = /* @__PURE__ */ h('iframe')
export const img = /* @__PURE__ */ h('img')
export const input = /* @__PURE__ */ h('input')
export const ins = /* @__PURE__ */ h('ins')
export const kbd = /* @__PURE__ */ h('kbd')
export const label = /* @__PURE__ */ h('label')
export const legend = /* @__PURE__ */ h('legend')
export const li = /* @__PURE__ */ h('li')
export const link = /* @__PURE__ */ h('link')
export const main = /* @__PURE__ */ h('main')
export const map = /* @__PURE__ */ h('map')
export const mark = /* @__PURE__ */ h('mark')
export const math = /* @__PURE__ */ h('math')
export const menu = /* @__PURE__ */ h('menu')
export const meta = /* @__PURE__ */ h('meta')
export const meter = /* @__PURE__ */ h('meter')
export const nav = /* @__PURE__ */ h('nav')
export const noscript = /* @__PURE__ */ h('noscript')
export const object = /* @__PURE__ */ h('object')
export const ol = /* @__PURE__ */ h('ol')
export const optgroup = /* @__PURE__ */ h('optgroup')
export const option = /* @__PURE__ */ h('option')
export const output = /* @__PURE__ */ h('output')
export const p = /* @__PURE__ */ h('p')
export const param = /* @__PURE__ */ h('param')
export const picture = /* @__PURE__ */ h('picture')
export const pre = /* @__PURE__ */ h('pre')
export const progress = /* @__PURE__ */ h('progress')
export const q = /* @__PURE__ */ h('q')
export const rp = /* @__PURE__ */ h('rp')
export const rt = /* @__PURE__ */ h('rt')
export const ruby = /* @__PURE__ */ h('ruby')
export const s = /* @__PURE__ */ h('s')
export const samp = /* @__PURE__ */ h('samp')
export const script = /* @__PURE__ */ h('script')
export const section = /* @__PURE__ */ h('section')
export const select = /* @__PURE__ */ h('select')
export const slot = /* @__PURE__ */ h('slot')
export const small = /* @__PURE__ */ h('small')
export const source = /* @__PURE__ */ h('source')
export const span = /* @__PURE__ */ h('span')
export const strong = /* @__PURE__ */ h('strong')
export const style = /* @__PURE__ */ h('style')
export const sub = /* @__PURE__ */ h('sub')
export const summary = /* @__PURE__ */ h('summary')
export const sup = /* @__PURE__ */ h('sup')
export const svg = /* @__PURE__ */ h('svg')
export const table = /* @__PURE__ */ h('table')
export const tbody = /* @__PURE__ */ h('tbody')
export const td = /* @__PURE__ */ h('td')
export const template = /* @__PURE__ */ h('template')
export const textarea = /* @__PURE__ */ h('textarea')
export const tfoot = /* @__PURE__ */ h('tfoot')
export const th = /* @__PURE__ */ h('th')
export const thead = /* @__PURE__ */ h('thead')
export const time = /* @__PURE__ */ h('time')
export const title = /* @__PURE__ */ h('title')
export const tr = /* @__PURE__ */ h('tr')
export const track = /* @__PURE__ */ h('track')
export const u = /* @__PURE__ */ h('u')
export const ul = /* @__PURE__ */ h('ul')
export const video = /* @__PURE__ */ h('video')
export const wbr = /* @__PURE__ */ h('wbr')