jsonFormat() does not format in Markdown Component

V 8.1.7
When using jsonFormat() expression on Markdown component in source property does not gives any pretty look to the JSON. However, when using the expression on TextArea component for example, the JSON does look pretty and readable. Is this expected to happen on the Markdown component?

I think it’s expected. Go put your JSON into any other Markdown preview/renderer on the web and see.

You probably need to surround the formatted JSON value in triple backticks.

```
{
    "key": value
}
```
1 Like

Indeed, thanks a lot!