Features
* Added `plain` to preset table styles in https://github.com/DenverCoder1/table2ascii/pull/50
py
>>> 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 https://github.com/DenverCoder1/table2ascii/pull/52
py
>>> 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
* refactor: Support for mypy linting in https://github.com/DenverCoder1/table2ascii/pull/51
* ci: Add support for Python 3.11 (Pyright linting) in https://github.com/DenverCoder1/table2ascii/pull/56
**Full Changelog**: https://github.com/DenverCoder1/table2ascii/compare/0.4.0...0.5.0