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
Added the ability to toggle the visibility of lines in Tables.
4
+
Functionality added to the table() factory function under the keyword argument "edges".
5
+
Values can be the strings "open", "closed", "horizontal", "vertical" or combinations of the letters "L", "R", "T", "B" which represent left, right, top, and bottom respectively.
6
+
7
+
Example:
8
+
table(..., edges="open") # No line visible
9
+
table(..., edges="closed") # All lines visible
10
+
table(..., edges="horizontal") # Only top and bottom lines visible
11
+
table(..., edges="LT") # Only left and top lines visible.
0 commit comments