<h3>To-Do List</h3>
<ul>
  <li>Unload the dishwasher</li>
  <li><del datetime="2019-10-11T01:25-07:00">Watch school lecture</del></li>
  <li><del datetime="2019-10-10T23:38-07:00">Download more music files</del></li>
  <li>Buy a printer</li>
</ul>
Rendered Output
<p>Shipping cost: <del>$50</del> <ins>Free</ins></p>
Rendered Output
<p>
    The following feature has been removed.
    <del cite="https://example.com/changelog">
        Details about the removed feature...
    </del>
</p>
<p>
    The following feature has been removed.
    <del cite="https://example.com/changelog" datetime="2022-11">
        Details about the removed feature...
    </del>
</p>
<!-- First example: incorrect use of <del> tag crossing paragraph boundaries -->
<aside>
    <!-- Warning: Do not use the <del> tag like this -->
    <del>
        <!-- This improperly spans across paragraph boundaries -->
        <p>I like fruit.</p> <!-- First paragraph starts -->
        Apples are <em>delicious</em>. <!-- First paragraph ends: paragraph boundaries are not explicitly marked -->
    </del>
    <del>
        Pears are also tasty. <!-- Second paragraph starts -->
    </del> <!-- Second paragraph ends -->
</aside>

<!-- Second example: correct use of <del> tag with clear structure -->
<aside>
    <!-- Each <del> tag clearly marks separate paragraphs -->
    <del>
        <p>I like fruit.</p> <!-- First paragraph starts -->
    </del> <!-- First paragraph ends -->
    <del>
        Apples are <em>delicious</em>. <!-- Second paragraph starts -->
    </del> <!-- Second paragraph ends -->
    <del>
        Pears are also tasty. <!-- Third paragraph starts -->
    </del> <!-- Third paragraph ends -->
</aside>