Hi,
I am printing a table without any particular style, configured with blank border and separator:
table
.border(Border::builder().build())
.separator(Separator::builder().build()),
Problem is it seems that the output of the leading and trailing cell is padded with whitespace. Is it possible to drop that whitespace and print text end to end?
I have tried to use customize_fn on the leading cell and set zero padding but that does not seem to help.