Skip to content

Plugin : HTML table parser / includer

Lucas TRITZ requested to merge html_table_2_plugin into main
# Test page

![The title is in markdown](test.html)

![](test.html)

(```)html table
<table>
    <caption> The 2nd table </caption>
    <tr> <td> Test </td> <td> Test </td> </tr>
    <tr> <td> Test </td> <td> Test </td> </tr>
    <tr> <td> Test </td> <td> Test </td> </tr>
    <tr> <td> Test </td> <td> Test </td> </tr>
</table>
(```)
<table style="text-align:justify;">
    <caption> The title is in the HTML file </caption>
    <colgroup>
        <col style="background-color: #88f; width: 1cm;">
        <col style="width: 25%"> <!-- 25% = 4.5cm -->
        <col span="2" style="width: 2.25cm">
        <!-- 5th and 6th col not specified -> (18cm - 1cm - 4.5cm - 2 * 2.25cm) / 2 col = 4.5cm -->
    </colgroup>
    <tr style="background: #FFFF00; text-align: center">
        <th>
            Name
        </th>
        <th style="vertical-align: top; background-color: #888">
            Description
        </th>
        <th>
            List
        </th>
        <th> Bla </th>
        <th> Ble </th>
        <th> Bli </th>
    </tr>
    <tr>
        <td style="vertical-align:bottom;">
            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>
        <td> 4 </td>
        <td> 5 </td>
        <td> 6 </td>
    </tr>

    <tr>
        <td rowspan="3"> Rowspan = 3 </td>
        <td colspan="2"> Colspan = 2 </td>
        <td rowspan="2" colspan="3"> Rowspan = 2 Colspan = 3</td>
    </tr>

    <tr>
        <td rowspan="2"> Rowspan = 2 </td>
        <td> Normal </td>
    </tr>

    <tr>
        <td> Normal </td>
        <td> Normal </td>
        <td> Normal </td>
        <td> Normal </td>
    </tr>
</table>

tables

Edited by Lucas TRITZ

Merge request reports