0.5.0
Features
- Added
plain
to preset table styles in #50
>>> table2ascii(header=[1,2,3,4], body=[[5,6,7,8], [9,10,11,12]], style=PresetStyle.plain)
1 2 3 4
5 6 7 8
9 10 11 12
- Added
cell_padding
configurable option in #52
>>> table2ascii(header=['A','B','C'], body=[[1,2,3]], footer=[5,6,7], first_col_heading=True, cell_padding=0)
╔═╦═══╗
║A║B C║
╟─╫───╢
║1║2 3║
╟─╫───╢
║5║6 7║
╚═╩═══╝
Meta
Full Changelog: 0.4.0...0.5.0