Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature request: XML to JSON #1607

Open
mark05e opened this issue Aug 1, 2023 · 0 comments · May be fixed by #1631
Open

Feature request: XML to JSON #1607

mark05e opened this issue Aug 1, 2023 · 0 comments · May be fixed by #1631
Labels

Comments

@mark05e
Copy link

mark05e commented Aug 1, 2023

Is your feature request related to a problem? Please describe.
There are xml documents that I work with and I find it hard to read xml when compared to json. It would be useful to have a function to covert between xml and json.

Describe the solution you'd like
When I bring in an xml content, I would like to change it to json as output.

Describe alternatives you've considered
Use 3rd party websites 🤷‍♂️

Additional context
Example from https://www.w3schools.com/xml/note.xml

<note>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
</note>

Using https://codebeautify.org/xmltojson

{
  "note": {
    "to": "Tove",
    "from": "Jani",
    "heading": "Reminder",
    "body": "Don't forget me this weekend!"
  }
}
@mark05e mark05e added the feature label Aug 1, 2023
@jpledref jpledref linked a pull request Sep 23, 2023 that will close this issue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant