-
-
Notifications
You must be signed in to change notification settings - Fork 333
Closed
Labels
Feature-RequestNew features suggested by usersNew features suggested by usersdiscussionin-progressReported issue is in progress to be resolved.Reported issue is in progress to be resolved.
Description
For some processing purpose, it is requied to preserve the position of tags and text value of a tag. Eg
<store> locates in
<region>US</region>
and
<region>Japan</region>
only
</store>
currently parsed to following when arrayMode is true.
{
"store": [
{
"#text": "locates inandonly",
"region": [
"US",
"Japan"
]
}
]
}
The expected output is one of the following
{
"store": [
{ "#text": "locates in" },
{ "region": "US" },
{ "#text": "and" },
{ "region": "Japan" },
{ "#text": "only" }
]
}
{
"store": [
"locates in",
{ "region": "US" },
"and",
{ "region": "Japan" },
"only"
]
}
lazarljubenovic, pjmolina, letalumil, schoste, abraxas-von-abrasax and 9 more
Metadata
Metadata
Assignees
Labels
Feature-RequestNew features suggested by usersNew features suggested by usersdiscussionin-progressReported issue is in progress to be resolved.Reported issue is in progress to be resolved.