A VS Code extension that helps you generate HTML tables quickly and easily.
- Open any
.htmlfile - Type
table - Select HTML Table Maker from suggestions
- Press
TaborEnter - A 3x2 table is inserted instantly!
- Press
Ctrl+Shift+P - Type
HTML Table Maker: Generate Table - Enter number of rows when prompted
- Enter number of columns when prompted
- Custom table is inserted at cursor!
Example output:
<table>
<tr>
<th>Header 1</th>
<th>Header 2</th>
<th>Header 3</th>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
</tr>
</table>- VS Code version 1.110.0 or higher
- Initial release
- Added snippet for quick 3x2 table
- Added command for custom size table