p-ranav / tabulate

Table Maker for Modern C++

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Disable lines between tbody rows

silverqx opened this issue · comments

Is it possible to disable lines between tbody rows? I didn't find anything in docs or on the issue tracker.

I want to have output like this:

+------+---------------------------------------------------------+-------+
| Ran? | Migration                                               | Batch |
+------+---------------------------------------------------------+-------+
| Yes  | 2014_10_12_000000_create_users_table                    | 1     |
| Yes  | 2014_10_12_100000_create_password_resets_table          | 1     |
| Yes  | 2014_10_12_200000_add_two_factor_columns_to_users_table | 2     |
+------+---------------------------------------------------------+-------+

Thank you for suggestion.

Normal output is, this type of output is too wordy/verbose:

+------+---------------------------------------------------------+-------+
| Ran? | Migration                                               | Batch |
+------+---------------------------------------------------------+-------+
| Yes  | 2014_10_12_000000_create_users_table                    | 1     |
+------+---------------------------------------------------------+-------+
| Yes  | 2014_10_12_100000_create_password_resets_table          | 1     |
+------+---------------------------------------------------------+-------+
| Yes  | 2014_10_12_200000_add_two_factor_columns_to_users_table | 2     |
+------+---------------------------------------------------------+-------+

Ok, nevermind I have found hide_border_xx() methods.