Table Shortcode

[table][/table]
Header 1 Header 2 Header 3 Header 4 Header 5
Cell 1.1 Cell 1.2 Cell 1.3 Cell 1.4 Cell 1.5
Cell 2.1 Cell 2.2 Cell 2.3 Cell 2.4 Cell 2.5
Cell 3.1 Cell 3.2 Cell 3.3 Cell 3.4 Cell 3.5
Cell 4.1 Cell 4.2 Cell 4.3 Cell 4.4 Cell 4.5
Footer text of the table
[table]
<table>
    <thead>
        <tr>
            <th>Header 1</th>
            <th>Header 2</th>
            <th>Header 3</th>
            <th>Header 4</th>
            <th>Header 5</th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td>Cell 1.1</td>
            <td>Cell 1.2</td>
            <td>Cell 1.3</td>
            <td>Cell 1.4</td>
            <td>Cell 1.5</td>
        </tr>
        ...
    </tbody>
    <tfoot>
        <tr>
            <td colspan="5"><i>Footer text of the table</i></td>
        </tr>
    </tfoot>
</table>
[/table]

Header 1 Header 2 Header 3 Header 4 Header 5
Cell 1.1 Cell 1.2 Cell 1.3 Cell 1.4 Cell 1.5
Cell 2.1 Cell 2.2 Cell 2.3 Cell 2.4 Cell 2.5
Cell 3.1 Cell 3.2 Cell 3.3 Cell 3.4 Cell 3.5
Cell 4.1 Cell 4.2 Cell 4.3 Cell 4.4 Cell 4.5
Footer text of the table
[table skin="red"]
	...
[/table]

Header 1 Header 2 Header 3 Header 4 Header 5
Cell 1.1 Cell 1.2 Cell 1.3 Cell 1.4 Cell 1.5
Cell 2.1 Cell 2.2 Cell 2.3 Cell 2.4 Cell 2.5
Cell 3.1 Cell 3.2 Cell 3.3 Cell 3.4 Cell 3.5
Cell 4.1 Cell 4.2 Cell 4.3 Cell 4.4 Cell 4.5
Footer text of the table
[table skin="blue"]
<table>
    <thead>
        <tr>
            <th>Header 1</th>
			...
        </tr>
    </thead>
    <tbody style="background-color:#efe7d1; border-color:#999">
        <tr>
            <td>Cell 1.1</td>
        </tr>
        ...
    </tbody>
    <tfoot style="background-color:#f0f0f0; color:#808080">
        <tr>
            <td colspan="5"><i>Footer text of the table</i></td>
        </tr>
    </tfoot>
</table>
[/table]