crescenity/note-mark

Support table

Opened this issue · 0 comments

Features

| Bob | Alice | Mike |
| --- | ----- | ---  |
| 15  |  16   |  17  |
<table>
    <thead>
        <tr>
            <th>Bob</th>
            <th>Alice</th>
            <th>Mike</th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td>15</td>
            <td>16</td>
            <td>17</td>
        </tr>
    </tbody>
</table>