https://github.com/vikcch/markdown-table-generator
Markdown Table Generator offers you an intuitive and easy to use interface for creating ascii and html data tables.
https://github.com/vikcch/markdown-table-generator
Last synced: about 2 months ago
JSON representation
Markdown Table Generator offers you an intuitive and easy to use interface for creating ascii and html data tables.
- Host: GitHub
- URL: https://github.com/vikcch/markdown-table-generator
- Owner: vikcch
- License: gpl-3.0
- Created: 2020-04-23T18:30:43.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-06T04:22:20.000Z (over 3 years ago)
- Last Synced: 2025-03-22T15:17:40.459Z (about 1 year ago)
- Language: Vue
- Size: 729 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 26
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Markdown Table Generator
Markdown Table Generator offers an intuitive and easy to use interface for creating ASCII and html data tables.
See it on action: [Markdown Table Generator](https://vikcch.github.io/markdown-table-generator/)
## Input data on a HTML table style

Use `Ctrl` + `Arrows` to navigate.
## Available options
* Increase and decrease rows and columns
* Header Alignment
* Body Alignment
* Highlight header
* Spreadsheet
* Same width columns
* Minimum column width
## Comment Sytle
* Custom
* Double slant `//`
* Slantsplat `/*` ... `*/`
* XML ``
With _custom_ comment style, there is an option to type the comment _before_ and/or the _after_ each row.
## Output Table Style
* MySQL
```*
+--------+--------+--------+
| H1 | H2 | H3 |
+--------+--------+--------+
| 1 | 2 | 3 |
| 4 | 5 | 6 |
+--------+--------+--------+
```
* Markdown
```*
| H1 | H2 | H3 |
|--------|--------|--------|
| 1 | 2 | 3 |
| 4 | 5 | 6 |
```
* Unicode
```*
╔════════╤════════╤════════╗
║ H1 │ H2 │ H3 ║
╟────────┼────────┼────────╢
║ 1 │ 2 │ 3 ║
║ 4 │ 5 │ 6 ║
╚════════╧════════╧════════╝
```
* HTML
```*
H1H2H3
123
456
```