Skip to content
/ mdtg Public

Quickly generate markdown tables in your terminal using a simplistic specification

License

Notifications You must be signed in to change notification settings

lukakerr/mdtg

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Markdown Table Generator mdtg

Crates.io

Quickly generate markdown tables in your terminal using a simplistic specification.

Installation

crates.io

$ cargo install mdtg

Manual

$ git clone https://github.com/lukakerr/mdtg.git
$ cargo run

Usage

# Create a 4 by 4 table, without spaces in argument
$ mdtg 4x4

|        |        |        |        |
| ------ | ------ | ------ | ------ |
|        |        |        |        |
|        |        |        |        |
|        |        |        |        |
|        |        |        |        |

# Create a 3 by 5 table, with left, center and right aligned columns
$ mdtg "3lcr x 5"

|        |        |        |
| ------ |:------:| ------:|
|        |        |        |
|        |        |        |
|        |        |        |
|        |        |        |
|        |        |        |

BNF Grammar

Table     -> Column Cross Row
Column    -> Num Positions
Row       -> Num
Num       -> Digit | Digit Num
Digit     -> [0-9]
Cross     -> "x"
Positions -> Position | Position Positions
Position  -> "l" | "r" | "c"

About

Quickly generate markdown tables in your terminal using a simplistic specification

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages