Skip to content

BHARGAV-RUE/HTML-Table-Maker

Repository files navigation

HTML Table Maker

A VS Code extension that helps you generate HTML tables quickly and easily.

Features

1. Quick Fixed Table (Snippet)

  • Open any .html file
  • Type table
  • Select HTML Table Maker from suggestions
  • Press Tab or Enter
  • A 3x2 table is inserted instantly!

2. Custom Size Table (Command)

  • 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!

Usage

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>

Requirements

  • VS Code version 1.110.0 or higher

Release Notes

0.0.1

  • Initial release
  • Added snippet for quick 3x2 table
  • Added command for custom size table

About

A VS Code extension that helps you generate HTML tables quickly and easily.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors