Having this source text:
Paragraph
<img src="file.jpg"
alt="some alt aligned with src attribute" title="some text" />
Another paragraph
We get this result:
<p>Paragraph</p>
<p><img src="file.jpg"</p>
<pre><code> alt="some alt aligned with src attribute" title="some text" />
</code></pre>
<p>Another paragraph</p>
Maybe it would be more consistent to get this:
<p>Paragraph</p>
<p><img src="file.jpg" alt="some alt aligned with src attribute" title="some text" /></p>
<p>Another paragraph</p>