You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, PyHTML only supports the main HTML namespace. It would be awesome to add support for other namespaces such as SVG to be able to group tags.
Potential usage:
importpyhtmlaspfrompyhtmlimportsvg# serves as the svg tag in the main namespace as well as an entry-point to the SVG namespacep.html(
p.body(
p.svg( # same as just svgsvg.path(...),
),
),
)
The text was updated successfully, but these errors were encountered:
Currently, PyHTML only supports the main HTML namespace. It would be awesome to add support for other namespaces such as SVG to be able to group tags.
Potential usage:
The text was updated successfully, but these errors were encountered: