Wrap Kirbytext (Markdown) in html tags

Hi, I’m trying to achieve this in markdown


<section class="classname">

# Heading

Lorem ipsum dolor sit amet, consectetur adipisicing elit

* sed do eiusmod tempor incididunt 
* ut labore et dolore magna aliqua. 
* Ut enim ad minim veniam

Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

</section>

Unfortunately, the Markdown text inside the section tag doesn’t render as html, just as plain text…

Any suggestions appreciated.

Screenshot:

screenshot

If you enable markdown extra in your config.php and put markdown="1" within the tag, it works.

Thanks, @texnixe, that did the job! Thank you.

<section class="classname" markdown="1">

It seems to have broken referenced links, rendering them like so: [Kirby][kirby]

The links would either need to be inlined (which works) or referenced inside the tag… Kirby-style links work fine as well