# Create and edit tables
# Create a table using Handsontable
GROWI allows you to create tables using Handsontable, a JavaScript library that brings spreadsheet-like table management.
# Steps
- Click the table icon on the toolbar to open the Edit Table dialog box.
- Right-click on the table in the dialog to add rows and columns, etc.
- Click the Done button to insert the table.
# Edit an already existing table in the dialog
# Edit mode
- Move the cursor to the table in editor.
- With the cursor over the table, click on the table icon in the toolbar to display the edit screen for an already existing table.
- The dialog box will appear and you can edit the table.
# View mode
- Move the cursor to the table in editor.
- Click the edit button that appears in the upper right corner of the table.
- The dialog box will appear and you can edit the table.
# Writing tables in Markdown
- Markdown
| Left align | Right align | Center align |
| :-------------------- | ----------------------: | :------------------------: |
| This column will | This column will | This column will |
| be aligned to the left| be aligned to the right | be centered |
- View
# Writing tables in TSV
- Markdown
# No header
``` tsv
10:00 Gather
10:20 Move
```
# With header
``` tsv-h
Time Action
10:00 Gather
10:20 Move
```
- View
# Writing tables in CSV
- Markdown
# No header
``` csv
11:00,Meeting
12:00,Lunch
```
# With header
``` csv-h
Time,Action
11:00,Meeting
12:00,Lunch
```
```
- View