We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
json-pretty-print
1 parent 61db0a6 commit a99387eCopy full SHA for a99387e
README.md
@@ -42,6 +42,38 @@ json-reformat:indent-width (integer)
42
Change indentation level (default 4)
43
```
44
45
+## IMPORTANT
46
+
47
+From emacs 24.4, `json-pretty-print` and `json-pretty-print-buffer` was bundled.
48
49
+Example:
50
51
+```json
52
+{"name":"foobar","nick":"foo \u00e4 bar","description":"<pre>\nbaz\n</pre>"}
53
+```
54
55
+Result of `json-pretty-print`:
56
57
58
+{
59
+ "description": "<pre>\nbaz\n<\/pre>",
60
+ "nick": "foo \u00e4 bar",
61
+ "name": "foobar"
62
+}
63
64
65
+Result of `json-reformat-region`:
66
67
68
69
+ "description": "<pre>
70
+baz
71
+</pre>",
72
+ "nick": "foo ä bar",
73
74
75
76
77
## LICENSE
78
79
MIT License. see `json-reformat.el`
0 commit comments