Why does the TinyMCE editor keep adding
line breaks to textarea content...? That's just wrong.
If I enter this in the WYSIWYG editor, for example:
<textarea cols="40" rows="7" name="textarea">
line 1
line 2
line 3
</textarea>
once saved it comes out like this:
<textarea cols="40" rows="7" name="textarea"><br />
line 1<br />
line 2<br />
line 3<br />
</textarea>
What a heck?
What if I want the content within the textarea to not have any added tags no matter what...? What am I, stuck in that case?