Topic: Ul/li tags stripped?
The following HTML
<p>Tools I used for this project:</p>
<p>
<ul>
<li><a href="http://www.jedit.org/">Jedit</a> (with OS X key bindings <a href="http://sourceforge.net/tracker/index.php?func=detail&aid=1966713&group_id=588&atid=300588">patch</a>)<br /></li>
<li><a href="http://www.syntevo.com/smartcvs/index.html">SmartCVS</a><br /></li>
<li><a href="http://www.mamp.info/en/download.html">MAMP</a><br /></li>
</ul>
</p>
<p>Check them out!</p>
<p> </p>after being passed and returned from htmLawed with the following parameters:
// Either
$config = array(
'elements' => '*-script-iframe',
);
// Or
$config = array(
'safe' => 1,
'deny_attribute' => 'on*,style,',
);Gets reduced to:
<p>Tools I used for this project:</p>
<p>
<a href="http://www.jedit.org/">Jedit</a> (with OS X key bindings <a href="http://sourceforge.net/tracker/index.php?func=detail&aid=1966713&group_id=588&atid=300588">patch</a>)<br />
<a href="http://www.syntevo.com/smartcvs/index.html">SmartCVS</a><br />
<a href="http://www.mamp.info/en/download.html">MAMP</a><br />
</p>
<p>Check them out!</p>
<p> </p>Why are the ul/li tags disappearing?