-
-
Notifications
You must be signed in to change notification settings - Fork 4
Closed as not planned
Labels
👎 phase/noPost cannot or will not be acted onPost cannot or will not be acted on🤷 no/invalidThis cannot be acted uponThis cannot be acted upon
Description
Initial checklist
- I read the support docs
- I read the contributing guide
- I agree to follow the code of conduct
- I searched issues and couldn’t find anything (or linked relevant results below)
Problem
Add an option to preserve the case of HTML tags. This is similar to issue #18, but for HTML tags in general.
Currently, this
{
"type": "raw",
"value": "<TabGroup><Tab lang='js' title='JavaScript' /></TabGroup>",
}
will yield
{
"type": "element",
"tagName": "tabgroup",
// ...
}
Solution
TabGroup
and Tab
should be cased.
It should produce this output instead
{
"type": "element",
"tagName": "TabGroup",
// ...
}
Metadata
Metadata
Assignees
Labels
👎 phase/noPost cannot or will not be acted onPost cannot or will not be acted on🤷 no/invalidThis cannot be acted uponThis cannot be acted upon