You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The feature I have in mind would improve readability when all_separators is false.
padding_top is available only if a title row exists.
padding_bottom is available either ways.
To illustrate:
Without table-padding (Current)
+------------+-------------+-----------+
| First Name | Middle Name | Last Name |
+------------+-------------+-----------+
| John | Malkov | Stuart |
| Jane | Roberta | Phillips |
| Chris | Malcom | Little |
| Amy | Jack | Robinson |
+------------+-------------+-----------+
With new table-padding: (Style 1)
+------------+-------------+-----------+
| First Name | Middle Name | Last Name |
+------------+-------------+-----------+
| | | |
| John | Malkov | Stuart |
| Jane | Roberta | Phillips |
| Chris | Malcom | Little |
| Amy | Jack | Robinson |
+------------+-------------+-----------+
+------------+-------------+-----------+
| John | Malkov | Stuart |
| Jane | Roberta | Phillips |
| Chris | Malcom | Little |
| Amy | Jack | Robinson |
+------------+-------------+-----------+
With new table-padding: (Style 2)
+------------+-------------+-----------+
| First Name | Middle Name | Last Name |
+------------+-------------+-----------+
| | | |
| John | Malkov | Stuart |
| Jane | Roberta | Phillips |
| Chris | Malcom | Little |
| Amy | Jack | Robinson |
| | | |
+------------+-------------+-----------+
+------------+-------------+-----------+
| John | Malkov | Stuart |
| Jane | Roberta | Phillips |
| Chris | Malcom | Little |
| Amy | Jack | Robinson |
| | | |
+------------+-------------+-----------+
The text was updated successfully, but these errors were encountered:
This could be made a little more intuitive if [nil, nil, nil] worked to make a blank row, but otherwise I don't really see the need to add this as a feature.
The feature I have in mind would improve readability when
all_separators
isfalse
.padding_top
is available only if atitle
row exists.padding_bottom
is available either ways.To illustrate:
Without table-padding (Current)
With new table-padding: (Style 1)
With new table-padding: (Style 2)
The text was updated successfully, but these errors were encountered: