πŸ“„ HtmlΒΆ

serializers.table.html

Explanation about SerializeTableAsHTMLΒΆ

HTML Table Serializer.

HTML table format used for rendering tables in web pages. Format(Sample):

<table>
    <thead>
        <tr><th>name</th><th>age</th><th>sex</th></tr>
    </thead>
    <tbody>
        <tr><td>Alice</td><td>26</td><td>F</td></tr>
        <tr><td>Raj</td><td>34</td><td>M</td></tr>
    </tbody>
</table>

Read more about catalog usage here.