----- Original Message ----- From: "Lachlan Hunt" <[EMAIL PROTECTED]>
To: "Michel Fortin" <[EMAIL PROTECTED]>
Cc: "whatwg List" <[EMAIL PROTECTED]>
Sent: Tuesday, August 29, 2006 8:00 PM
Subject: Re: [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>


Lets forget about <ins> or <del> as anyway this is better

<ol>
  <li class="new" inversion="">Some list item</li>
  <li class="removed" inversion="">Another list item</li>
</ol>

Andrew Fedoniouk.
http://terrainformatica.com


Reply via email to