Quickly format JSON with 2 spaces
/json fmt {"first":"John","last":"Doe","registered":false,"height":182.88,"address":null}
{ "first": "John", "last": "Doe", "registered": false, "height": 182.88, "address": null }
Format with custom number of spaces
/json fmt 4 {"first":"John","last":"Doe","registered":false,"height":182.88,"address":null}
{ "first": "John", "last": "Doe", "registered": false, "height": 182.88, "address": null }
You can also minify JSON
/json minify { "first": "John", "last": "Doe", "registered": false, "height": 182.88, "address": null }
{"first":"John","last":"Doe","registered":false,"height":182.88,"address":null}
You can send feedback directly through Slack
/json feedback Cool bot!
You can also send structured feedback this way
/json feedback {"message": "Can you make it format with tabs?", "contact": "joe@company.com"}