Removing ListStyle

Dan Friedman dan at clearvisiontech.com
Tue Jul 30 15:08:40 EDT 2013


Hello...

How do you remove the listStyle of some text?  If you set it to "skip" as listed in the dictionary, you still have remnants of the listStyle.  For example, using the htmlText of a field, it starts with:

<p>test</p>

Then you set the listStyle to "disc" and you get this:

<ul type="disc">
<li>
<p>test</p>
</li>
</ul>

set the listStyle to "skip", and you get this:

<ol type="(null)">
<p listindent="0">test</p>
</li>
</ol>

Setting the listStyle to empty doesn't work either.  How do you get it back to this:

<p>test</p>

Anyone know how to remove the listStyle?

Thanks in advance,
-Dn



More information about the use-livecode mailing list