- Affected version
- 2.3.7
If you copy & paste from a HTML document with this sort of structure:
It results in:
It results in:
The linebreaks typically show up when copying HTML from firefox, while chrome will strip newlines between tags.
HTML:
<html><head></head>
<body>
<h1>1</h1>
<p>2</p>
</body></html>
But if you copy & paste the following structure (no newline between <h1 & ><p> tags:with newline said:
HTML:
<html><head></head>
<body>
<h1>header</h1><p>Lorem ipsum</p>
</body></html>
with new line said:1
2
The linebreaks typically show up when copying HTML from firefox, while chrome will strip newlines between tags.