-
-
Notifications
You must be signed in to change notification settings - Fork 331
Closed
Labels
Description
- Are you running the latest version?
- Have you included sample input, output, error, and expected output?
- Have you checked if you are using correct configuration?
- Did you try online tool? (there doesn't seem to be a way to add stop nodes to the online tool)
Description
When the allowBooleanAttributes
flag is set on XMLParser
, the parser will interpret the closing /
in a self-closing stop node as a boolean attribute. This introduces further problems when attempting to build the parsed data back into a string, as it produces invalid XML. E.g., <script src="script.js" />
becomes <script src="script.js" //>
(note the double slash).
It is possible to implement a workaround by adding an updateTag
method that removes @_/
attributes.
Input
<script src="script.js" />
Code
const parser = new XMLParser({
allowBooleanAttributes: true,
ignoreAttributes: false,
stopNodes: ["*.pre", "*.script"],
})
parser.parse(inputString)
Output
expected data
{ script: { '@_src': 'script.js', '@_/': true } }
Would you like to work on this issue?
- Yes (could use some guidance, though)
- No
Bookmark this repository for further updates. Visit SoloThought to know about recent features.