To format/prettify a JSON file offline in Notepad++ text editor, you need to install a plugin called as JSTOOL, follow the below steps to get the plugin.
Installing Json Formatting Plugin in Notepad++
- Goto Menu → Plugins → Plugin Admin...
- Look for JSTOOL.
- Check the checkbox and click Install.
- Click OK and Notepad++ should restart.
Once the plugin is installed, open the JSON file in a tab, goto Plugins → JSTOOL → JSFORMAT to format/pretty print.
JSON before Prettify
{"details": {"name": "John L","age": "24",
"location": "Sweden"
}
}
JSON after Prettify
{
"details": {
"name": "John L",
"age": "24",
"location": "Sweden"
}
}
⛏️ You can also use Keyboard shortcut: Ctrl + Alt + M to format.
Comments:
- this is what I was looking for.... thank you!
anon 23 Aug 2020 05:04:14 GMT
- Thank you very very much for this article, short and sweet, I was looking for ways to format a JSON file locally on my system using Notepad and this works well.
mkiki 22 Aug 2020 10:08:25 GMT
- Further comments disabled!
This is not an AI-generated article but is demonstrated by a human.
Please support independent contributors like Code2care by donating a coffee.
Buy me a coffee!
