Markdown (Extra?) id'ed sections

Is there any markdown or markdown extra syntax that outputs differentiable block-level elements? like:

<section id="first">
   <h2>heading</h2>
   <p>lorem ipsum</p>
   <p>lorem ipsum</p>
</section>
<section id="second">
   <p>lorem ipsum</p>
</section>

Thanks! The closest thing I can figure out is doing a structured field made of textareas, but this is slightly cumbersome.

There is no markdown or markdown extra syntax that creates div tags.

You can either use HTML in your text files (and use markdown in between), or you could create a custom Kirbytag, have a look at the columns plugin for ideas.

Thanks for the quick reply! That plugin is actually exactly what I was going for, funnily enough.