-
Notifications
You must be signed in to change notification settings - Fork 881
Open
Labels
confirmedConfirmed bug report or approved feature request.Confirmed bug report or approved feature request.extensionRelated to one or more of the included extensions.Related to one or more of the included extensions.featureFeature request.Feature request.someday-maybeApproved low priority request.Approved low priority request.
Description
Web components are custom HTML components that are required to have -
in their names. This breaks current HTML handling since these elements are not considered. IMHO they should be treated the same as <div>
("block" elements, if I'm not mistaken).
The following was tested in current main
with the extension md_in_html
active.
input
<a-b>
asdf
</a-b>
output:
<p><a-b></p>
<p>asdf</p>
<p></a-b></p>
expected:
<a-b>
<p>asdf</p>
</a-b>
I went through the code and might know how to add this, but I would like the maintainers' input before proceeding.
Metadata
Metadata
Assignees
Labels
confirmedConfirmed bug report or approved feature request.Confirmed bug report or approved feature request.extensionRelated to one or more of the included extensions.Related to one or more of the included extensions.featureFeature request.Feature request.someday-maybeApproved low priority request.Approved low priority request.