XML-to-JSON-in-XSLT icon indicating copy to clipboard operation
XML-to-JSON-in-XSLT copied to clipboard

{ is very generic and not able to change it for child

Open nicku123 opened this issue 6 years ago • 0 comments

current output: { "root" : { "items" : { "Svitem" : [ { "123" }, { "123" } ], "item" : [ { "123" }, { "123" }, { "123" }, { "123" }, { "123" } ] } } }

needed output: { "root" : { "items" : { "Svitem" : [ "123" , "123" ], "item" : ["123" , "123" , "123" , "123" , "123" ] } } }

nicku123 avatar Jul 11 '18 16:07 nicku123