json-reformat.el
is reformat tool for JSON.
From emacs 24.4 , json-pretty-print
and json-pretty-print-buffer
(similar specifications as json-reformat-region
) was bundled.
- Emacs 23 or higher
You can install from MELPA with package.el
M-x package-install RET json-reformat
M-x json-reformat-region
json-reformat:indent-width (integer)
Change indentation level (default 4)
json-reformat:pretty-string? (boolean)
Specify whether to decode the string (default nil)
Example:
;; {"name":"foo\"bar","nick":"foo \u00e4 bar","description":"<pre>\nbaz\n</pre>","home":"/home/foobar"}
If nil:
{
"name": "foo\"bar",
"nick": "foo \u00e4 bar",
"description": "<pre>\nbaz\n<\/pre>",
"home": "\/home\/foobar"
}
Else t:
{
"name": "foo\"bar",
"nick": "foo ä bar",
"description": "<pre>
baz
</pre>",
"home": "/home/foobar"
}
MIT License. see json-reformat.el