XenForo
Administrative
- Thread starter
- Admin
- #1
Suppose the editor has this contents
Code:
This renders as;
Code:
However if you press the delete key after '1'; the editor results in
Code:
And not the expected;
Code:
If there is a trailing
It looks like
Read more
ادامه مطلب...
Code:
Code:
<p>1</p>
<p><br/>3</p>
Code:
Code:
1
3
However if you press the delete key after '1'; the editor results in
Code:
<p>13</p>
And not the expected;
Code:
Code:
<p>1</p>
<p>3</p>
If there is a trailing
<br>
in the <p>
, it is effectively invisible; then you need to press the delete key multiple times after the '1' value to actually delete the newline.It looks like
normalizePaste
br
normalization code...Read more
ادامه مطلب...