Closed ThomasWeinert closed 10 years ago
Add a loader for JSONx. This loader would convert JSONx into JsonDOM, allowing easier Xpath expressions.
<json:object> <json:string name="ticker">IBM</json:string> </json:object>
would be converted to:
<json:json> <ticker>IBM</ticker> </json:json>
If here is a loader, it would make sense to add a serializer, too. So you can save the loaded file into the original format.
Implemented, converting the JsonDOM back to JSONx is a transformer, not a serializer however. It generates a DOM document after all.
Add a loader for JSONx. This loader would convert JSONx into JsonDOM, allowing easier Xpath expressions.
would be converted to:
If here is a loader, it would make sense to add a serializer, too. So you can save the loaded file into the original format.