<p>My favorite color used to be <del>red.</del> <ins>blue.</ins></p>
Rendered Output
<ins class="adsbygoogle">
    <!-- Ad content -->
</ins>
<p>
    This is a note about the latest update.
    <ins cite="https://example.com/changelog">
        Details of the latest update...
    </ins>
</p>
<p>
    This is a note about the latest update.
    <ins cite="https://example.com/changelog" datetime="2024-11">
        Details of the latest update...
    </ins>
</p>
<!-- Incorrect usage: <ins> tag crossing paragraph boundaries -->
<aside>
    <!-- Do not use the <ins> tag like this -->
    <ins>
        <!-- This improperly spans across paragraphs -->
        <p>I like fruit.</p> <!-- First paragraph starts -->
        Apples are <em>delicious</em>. <!-- Paragraph ends implicitly -->
    </ins>
    <ins>
        Pears are also tasty. <!-- Second paragraph starts -->
    </ins> <!-- Second <ins> ends -->
</aside>

<!-- Correct usage: clear structure with <ins> tags -->
<aside>
    <ins>
        <p>I like fruit.</p> <!-- First paragraph -->
    </ins>
    <ins>
        Apples are <em>delicious</em>. <!-- Second paragraph -->
    </ins>
    <ins>
        Pears are also tasty. <!-- Third paragraph -->
    </ins>
</aside>