I am currently trying to solve an issue I have with some markdown HTML.
What I try to achieve is a <a>-block. The code I want to use in the markdown file is as follow:
<a href="#" markdown="1"><div class="left">
## Title 1

</div></a>
Now the problem is that the output of this is really unusable:
<p><a href="#" markdown="1"><div class="left"></p>
<h2>Title 1</h2>
<p><img alt="Description" src="/path/grav-admin/user/pages/03.de/01.home/_home1/test.png" />
</div></a></p>
I tried also other variants using <a> without <div>, but the output is also bad.
How can I get clean code?