How to use front matter parameter that contains markdown or HTML and turn it into HTML in partials?

I returned back to using json and trying to replace chars like this:

{{ $jsonAnswer := .answer | markdownify | jsonify }}
{{ $jsonAnswer := replace $jsonAnswer "\\u003c" "<"}}

This way < is encoded into into /&lt;

It’s a very difficult case for me :smiley:

Maybe I can use Custom output format. What do you think?