Skip to content

lonepeon/tableformat

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

codecov

Table format

Small tool accepting a Markdown table as input and generating a new one properly aligned.

# Before

| a| b| c| d|
|--|:--|--:|:-:|
| value a1 | value b1 | value c1 | value d1 |
| longer value a2 | longer value b2 | longer value c2 | longvalue d2 |

# After

| a               | b               |               c |      d       |
|-----------------|:----------------|----------------:|:------------:|
| value a1        | value b1        |        value c1 |   value d1   |
| longer value a1 | longer value b2 | longer value c2 | longvalue d2 |

Development

  • Setup your local environment using make setup