Hello there,
I have noticed that when my pages are rendered EE is adding extra and unused markup.
For example:
<ol>
{exp:channel:entries channel="content_events" sort="asc" limit="5"}
<li>
<a href="#" title="{title}">{title}</a>
<small>{date_of_event}</small>
{event_summary}
<li>
{/exp:channel:entries}
</ol>However this renders as follows:
<ol>
<li>
<a href="#%22title=%22Event" title="Event 01">Event 01</a>
<small>1378819200</small>
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
As you can see there are additional unused tags there now. How can I stop this and why is it happening?