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;
?>