Operating system
Windows
Joplin version
2.14.19
Sync target
OneDrive
Editor
Markdown Editor
What issue do you have?
When attempting to embed a markdown label within a Html label, I've found that only Code A functions correctly.
The Code B, Code C and Code D will display the original text 
in the result window. It appears that the markdown engine isn't interpreting the 
correctly.
How can I remove the blank line before embedding a markdown label within a Html label?
Code A
<div class="myImage">

</div>
Code B
<div class="myImage">

</div>
Code C
<div class="myImage">
<br/>

</div>
BTW, the Code D doesn't display the correct result, but it can change the style of 
in editor window.
Code D
<div class="myImage" markdown="1">

</div>