NPP-JSONViewer / JSON-Viewer

A JSON viewer plugin for Notepad++. Displays the selected JSON string in a tree view.
MIT License
755 stars 150 forks source link

Support for JSON5 #79

Open cassiorenan opened 4 years ago

cassiorenan commented 4 years ago

Json5 is a really nice superset of JSON. Any plans on supporting it?

kapilratnani commented 4 years ago

JSON5 looks good. Can you recommend a C/C++ parser implementation with SAX? I use rapidjson which supports just comments.

lifw555 commented 2 years ago

i want to use comments.

thx.

if i use comments and format it , then comments lost

SinghRajenM commented 2 months ago

Yes, Rapidjson does not supports comments fully. It removes them while formatting and this is due to SAX parsing. SAX parser just ignores the comments.

Other parsers does not suppots SAX parsing as this moment. Will explore more what can be done.