Quote:
Originally Posted by Digital Jedi
So your saying that it converts the literal posting of a <br /> tag into an actual carriage return?
|
I'm saying that it converts the literal posting of a new line into a new line AND a <br /> tag. This means I get an extra new line (twice as many) for every time I press enter.
So in the WYSIWYG editor:
Code:
Lorum ipsum
dolor ist
The result shows up like on the page:
Code:
Lorum ipsum
dolor ist
And the source code shows:
HTML Code:
<pre>
Lorum ipmsum<br />
dolor ist
</pre>
<pre> tags will literally take new lines in source and parse them, as well as <br /> tags. Resulting in double spacing.