An open API service indexing awesome lists of open source software.

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.

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

![IMG](./src/assets/html-table.png)

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

```