Hi there,
I have a channel which is used for some small entries on the side of my pages. The entries contain an address block, a download link list, a random proverb, etc. The field type of the entries’ content is Textarea (Rich Text) since the user has to use the WYSIWYG.
My markup in the entries is e.g. as follows:
<header><h2>Downloads</h2></header>
<ul>
<li><a href="/">Some link</li>_<li><a href="/">Some link</li>_<li><a href="/">Some link</li>_</ul><header></p><h2>Downloads</h2></header>_<ul>_<li><a href="/">Some link</li>_<li><a href="/">Some link</li>_<li><a href="/">Some link</li>_</ul><header><h2>Contact me</h2></header>_<address>_My name____My home address line1__My home address line2____<abbr title="Phone">T</abbr> <a href="tel:555">555</a>
<abbr title="Email">E</abbr> <a href="mailto:[email protected]">[email protected]</a>
</address>Turns into:
<header><p><h2>Contact me</h2><p></header><br />
<address><br />
My name<br />
My home address line1<br />
My home address line2</p>
<p><abbr title="Phone">T</abbr> <a href="http://tel:555">555</a><br />
<abbr title="Email">E</abbr> <a href="mailto:[email protected]">[email protected]</a><br />
</address>
Is there any way i could prevent the formatting from messing up my markup but maintain the WYSIWYG?
Thanks!