Is there a way to nicely format/style JSON code in Github Wiki (i.e Markdown preferred)?
Something like this with few colors (or bold) and correct indentation: http://www.freeformatter.com/json-formatter.html#ad-output
Is there a way to nicely format/style JSON code in Github Wiki (i.e Markdown preferred)?
Something like this with few colors (or bold) and correct indentation: http://www.freeformatter.com/json-formatter.html#ad-output
I encountered the same problem. So, I tried representing the
JSON
in different Language syntax formats.But all time favorites arePerl
,js
,python
, &elixir
.This is how it looks.
The following screenshots are from the
Gitlab
in a markdown file. This may vary based on the colors using for syntax inMARKDOWN
files.2019 Github Solution
Result
If you want to have keys a different colour to the parameters, set your language as
yaml
@Ankanna's answer gave me the idea of going through github's supported language list and
yaml
was my best find.I tried using
json
but didn't like the way it looked.javascript
looks a bit more pleasing to my eye.Some color-syntaxing enrichment can be applied with the following blockcode syntax
Note: This won't prettify the json representation. To do so, one can previously rely on an external service such as jsbeautifier.org and paste the prettified result in the wiki.