[whatwg] Lists, <ins>/<del>, and <a>

Michel Fortin wrote:
> How can we markup removed or inserted list items? Here's a 
> general idea:
> 
>     <ul>
>     <ins><li>Some list item</li></ins>
>     <del><li>Another list item</li></del>
>     </ul>

This can be solved by putting the ins and del elements as the only child 
nodes of the li elements instead.

<ul>
   <li><ins>Some list item</ins></li>
   <li><del>Another list item</del></li>
</ul>

-- 
Lachlan Hunt
http://lachy.id.au/

Received on Tuesday, 29 August 2006 20:00:53 UTC