0.1.8 • Published 3 years ago

@code-blocks/tables v0.1.8

Weekly downloads
-
License
GPLv2
Repository
github
Last release
3 years ago

@code-blocks/tables

Install

npm install @code-blocks/tables

Use with rehype or eleventy. See how here.

Usage

Because creating tables in pure markdown can be painful...

language: csv-table

Letters, Amount
A,28
B,55
C,43
D,91
E,81
F,53
LettersAmount
A28
B55
C43
D91
E81
F53

If other than , set the separator in the options:

---
separator: \t
---
Letters\tAmount
A\t28
B\t55
C\t43
D\t91
E\t81
F\t53
LettersAmount
A28
B55
C43
D91
E81
F53