Enable Markdown Parsing Inside of DIV Blocks
If you have a <div> block wrapping your markdown code, you get a problem:
### Ich bin eine Überschrift
</div>
The problem is, that the markdown code does not get parsed. To enable markdown parsing in <div> blocks, you have to add markdown=“1” to the <div> block:
### Ich bin eine Überschrift
</div>