Skip to content

Commit 1a6dadc

Browse files
Export fencedframe element
1 parent 294386d commit 1a6dadc

File tree

2 files changed

+122
-117
lines changed

2 files changed

+122
-117
lines changed

pyhtml/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -384,6 +384,7 @@
384384
"track",
385385
"video",
386386
"embed",
387+
"fencedframe",
387388
"iframe",
388389
"object",
389390
"picture",
@@ -502,6 +503,7 @@
502503
track,
503504
video,
504505
embed,
506+
fencedframe,
505507
iframe,
506508
object,
507509
picture,

pyhtml/__tags/__init__.py

Lines changed: 120 additions & 117 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
44
Definitions for tags
55
"""
6+
67
# Re-export renamed versions of tags
78
from .comment import Comment
89
from .dangerous_raw_html import DangerousRawHtml
@@ -12,126 +13,127 @@
1213
# Copy this into pyhtml/__tags/__init__.py
1314
__all__ = [
1415
# This one is generated by hand
15-
'input',
16+
"input",
1617
# These are extra features of PyHTML enhanced
17-
'DangerousRawHtml',
18-
'Comment',
18+
"DangerousRawHtml",
19+
"Comment",
1920
# These two are renamed
20-
'input_',
21-
'object_',
21+
"input_",
22+
"object_",
2223
# These are generated
23-
'html',
24-
'base',
25-
'head',
26-
'link',
27-
'meta',
28-
'style',
29-
'title',
30-
'body',
31-
'address',
32-
'article',
33-
'aside',
34-
'footer',
35-
'header',
36-
'h1',
37-
'h2',
38-
'h3',
39-
'h4',
40-
'h5',
41-
'h6',
42-
'hgroup',
43-
'main',
44-
'nav',
45-
'section',
46-
'search',
47-
'blockquote',
48-
'dd',
49-
'div',
50-
'dl',
51-
'dt',
52-
'figcaption',
53-
'figure',
54-
'hr',
55-
'li',
56-
'menu',
57-
'ol',
58-
'p',
59-
'pre',
60-
'ul',
61-
'a',
62-
'abbr',
63-
'b',
64-
'bdi',
65-
'bdo',
66-
'br',
67-
'cite',
68-
'code',
69-
'data',
70-
'dfn',
71-
'em',
72-
'i',
73-
'kbd',
74-
'mark',
75-
'q',
76-
'rp',
77-
'rt',
78-
'ruby',
79-
's',
80-
'samp',
81-
'small',
82-
'span',
83-
'strong',
84-
'sub',
85-
'sup',
86-
'time',
87-
'u',
88-
'var',
89-
'wbr',
90-
'area',
91-
'audio',
92-
'img',
93-
'map',
94-
'track',
95-
'video',
96-
'embed',
97-
'iframe',
98-
'object',
99-
'picture',
100-
'source',
101-
'canvas',
102-
'noscript',
103-
'script',
104-
'del_',
105-
'ins',
106-
'caption',
107-
'col',
108-
'colgroup',
109-
'table',
110-
'tbody',
111-
'td',
112-
'tfoot',
113-
'th',
114-
'thead',
115-
'tr',
116-
'button',
117-
'datalist',
118-
'fieldset',
119-
'form',
120-
'input',
121-
'label',
122-
'legend',
123-
'meter',
124-
'optgroup',
125-
'option',
126-
'output',
127-
'progress',
128-
'select',
129-
'textarea',
130-
'details',
131-
'dialog',
132-
'summary',
133-
'slot',
134-
'template',
24+
"html",
25+
"base",
26+
"head",
27+
"link",
28+
"meta",
29+
"style",
30+
"title",
31+
"body",
32+
"address",
33+
"article",
34+
"aside",
35+
"footer",
36+
"header",
37+
"h1",
38+
"h2",
39+
"h3",
40+
"h4",
41+
"h5",
42+
"h6",
43+
"hgroup",
44+
"main",
45+
"nav",
46+
"section",
47+
"search",
48+
"blockquote",
49+
"dd",
50+
"div",
51+
"dl",
52+
"dt",
53+
"figcaption",
54+
"figure",
55+
"hr",
56+
"li",
57+
"menu",
58+
"ol",
59+
"p",
60+
"pre",
61+
"ul",
62+
"a",
63+
"abbr",
64+
"b",
65+
"bdi",
66+
"bdo",
67+
"br",
68+
"cite",
69+
"code",
70+
"data",
71+
"dfn",
72+
"em",
73+
"i",
74+
"kbd",
75+
"mark",
76+
"q",
77+
"rp",
78+
"rt",
79+
"ruby",
80+
"s",
81+
"samp",
82+
"small",
83+
"span",
84+
"strong",
85+
"sub",
86+
"sup",
87+
"time",
88+
"u",
89+
"var",
90+
"wbr",
91+
"area",
92+
"audio",
93+
"img",
94+
"map",
95+
"track",
96+
"video",
97+
"embed",
98+
"fencedframe",
99+
"iframe",
100+
"object",
101+
"picture",
102+
"source",
103+
"canvas",
104+
"noscript",
105+
"script",
106+
"del_",
107+
"ins",
108+
"caption",
109+
"col",
110+
"colgroup",
111+
"table",
112+
"tbody",
113+
"td",
114+
"tfoot",
115+
"th",
116+
"thead",
117+
"tr",
118+
"button",
119+
"datalist",
120+
"fieldset",
121+
"form",
122+
"input",
123+
"label",
124+
"legend",
125+
"meter",
126+
"optgroup",
127+
"option",
128+
"output",
129+
"progress",
130+
"select",
131+
"textarea",
132+
"details",
133+
"dialog",
134+
"summary",
135+
"slot",
136+
"template",
135137
]
136138

137139

@@ -169,6 +171,7 @@
169171
dt,
170172
em,
171173
embed,
174+
fencedframe,
172175
fieldset,
173176
figcaption,
174177
figure,

0 commit comments

Comments
 (0)