Kirby 3 - textarea - markdown and paragraphs not being rendered

Hello, I’m using Kirby Builder and two blocks: text and textarea

In the textarea block, I have two issues, one is that the markdown is being displayed as a markdown also in the front-end, and paragraphs are not correctly rendered

How to make it spill out HTML tags (and not markdown) and also render paragraphs in the front end?

Right now, this is the template code to render the blocks
<?php
$counter = 0;
foreach($page->mybuilder()->toBuilderBlocks() as $block):
snippet(‘blocks/’ . $block->_key(), array(‘data’ => $block, ‘counter’ => $counter));
$counter++;
endforeach;
?>

Do you render the fields with kirbytext()/kt() in the block snippets?

I was not. Now I understood the logic behind it.

Thank you :slight_smile: