How to style a JSON block in Github Wiki?

前端 未结 4 641
难免孤独
难免孤独 2021-01-30 07:31

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 corre

4条回答
  •  醉梦人生
    2021-01-30 08:26

    Some color-syntaxing enrichment can be applied with the following blockcode syntax

    ```json
    Here goes your json object definition
    ```
    

    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.

提交回复
热议问题