NaturalIntelligence / NaturalIntelligence/fast-xml-parser
Online demo does not handle DOCTYPE correctly and gives an error
Nobody has claimed this yet.
- Dominant language
- JavaScript
- Stars
- 3.1k
- Forks
- 395
- Avg merge
- 1d 20h
- Merged PRs (30d)
- 1
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?
Description
Steps to reproduce:
- go to the online tool https://naturalintelligence.github.io/fast-xml-parser/
- no additional input needed, just click "Parse to JSON"
- then "Parse to XML"
- and again "Parse to JSON"
- it'll print
Error: XML declaration allowed only at the start of the document.:2:6
I guess this is due to the { "?xml": "", ... } property, which converts to an invalid and duplicated doctype, resulting in an invalid XML:
<?xml version="1.0"?>
<?xml?>
<!-- ... the rest of the XML is valid -->
If i uncheck the "Ignore attributes" checkbox, then at the 2nd step i'll get a JSON that starts with this
{
"?xml": {
"@_version": "1.0"
},
and when you convert it back to XML then you get a valid, but still duplicated doctype, which results in the same error:
<?xml version="1.0"?>
<?xml version="1.0"?>
<!-- ... the rest of the XML is valid -->
Code
The default XML sample that's in the online tool.
Output
expected data
Would you like to work on this issue?
- Yes
- No
Bookmark this repository for further updates. Visit SoloThought to know about recent features.
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Start with the online tool at https://naturalintelligence.github.io/fast-xml-parser/ and reproduce the documented Parse to JSON, Parse to XML, and Parse to JSON sequence using its default XML sample. Done means the round trip no longer reports the XML declaration error or produces a duplicated declaration; no source file or test is named in the issue.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- javascript
- Domain
- frontend, web-dev
- Issue type
- Bug
- Difficulty
- 3/5
- Estimated time
- 1-2 days
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 38/100