Skip to content

Plugin: Include HTML tables like figures

Lucas TRITZ requested to merge html_table_includer into main
<table>
    <tr>
        <th>
            Name
        </th>
        <th>
            Description
        </th>
        <th>
            List
        </th>
    </tr>
    <tr>
        <td>
            Lorem
        </td>
        <td>
            <p> Lorem i<b>psu</b>m dolor sit, amet consectetur adipisicing elit. </p>
            pop
            <p>
                Nostrum quae error <b>placeat</b> exercitationem cum, laudantium
                necessitatibus rerum saepe aliquam voluptatibus molestiae velit!
                Illum, <i>voluptate mollitia nesciunt</i> fugit adipisci error
                debitis!
            </p>
        </td>
        <td>
            <p>aaa
            bbb</p>
            <p>ccc</p>
            <ul>
                <li>ddd</li>
                <li>
                    eee
                    <ul>
                        <li>fff</li>
                    </ul>
                </li>
                <li>ggg</li>
            </ul>
            <p>hhh</p>
        </td>
    </tr>
</table>

Capture

Edited by Lucas TRITZ

Merge request reports