NaturalIntelligence / NaturalIntelligence/fast-xml-builder
Add transformTagName to the XMLBuilder
Open
Nobody has claimed this yet.
enhancement
- Dominant language
- JavaScript
- Stars
- 22
- Forks
- 8
- PR merge metrics
- No merged PRs in 30d
Description
XMLParser has option transformTagName, which allows to mutate tag names on parsing. Similar option would be very useful for XMLBuilder too.
Example usecase:
const builder = new XMLBuilder({
arrayNodeName: 'book',
transformTagName: (tag) => tag.toUpperCase()
})
const xml = builder.build([{ author: 'Joe Doe', title: 'Great book'}]);
would produce:
<book>
<AUTHOR>Joe Doe</AUTHOR>
<TITLE>Great book</TITLE>
</book>
Would you like to work on this issue?
- Yes
- No
Contributor guide
No contributing guide indexed for this repository
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 at the XMLBuilder entry point and compare its tag-name handling with XMLParser's existing transformTagName option. Add the builder option so the example uppercases child tags, then verify the generated XML matches the documented output.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- javascript, typescript
- Domain
- tooling
- Issue type
- Feature
- Difficulty
- 3/5
- Estimated time
- 1-2 days
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 48/100