File tree Expand file tree Collapse file tree 1 file changed +6
-8
lines changed Expand file tree Collapse file tree 1 file changed +6
-8
lines changed Original file line number Diff line number Diff line change 150
150
- :func:`template`
151
151
"""
152
152
153
- from .core .vdom import VdomDict , make_vdom_constructor
153
+ from .core .proto import VdomDict
154
+ from .core .vdom import make_vdom_constructor
154
155
155
156
156
157
# Dcument metadata
247
248
# Scripting
248
249
canvas = make_vdom_constructor ("canvas" )
249
250
noscript = make_vdom_constructor ("noscript" )
250
- script = make_vdom_constructor ("script" )
251
-
252
- # Demarcating edits
253
- del_ = make_vdom_constructor ("del" )
254
- ins = make_vdom_constructor ("ins" )
255
-
256
- # Scripting
257
251
258
252
259
253
def script (content : str ) -> VdomDict :
@@ -270,6 +264,10 @@ def script(content: str) -> VdomDict:
270
264
return {"tagName" : "script" , "children" : [content ]}
271
265
272
266
267
+ # Demarcating edits
268
+ del_ = make_vdom_constructor ("del" )
269
+ ins = make_vdom_constructor ("ins" )
270
+
273
271
# Table content
274
272
caption = make_vdom_constructor ("caption" )
275
273
col = make_vdom_constructor ("col" )
You can’t perform that action at this time.
0 commit comments