In my document that I am editing using YAML. I was about to insert a block of code using the GFM syntax that expects from it according to this document .
description: >-
Some description of the object here.
More Here. An example to for this is as follows:
```json
{
"Key": {
"name": "myName",
"id": 100
}
}
```
This, however, is not displayed in JSON format, but it ends on one line:
Some description of the object here. More Here. An example to for this is as follows: ```json { "Key": { "name": "myName", "id": 100 } } ```
source
share