Browse Source
Given a table like this: | H1 | H2 | H3 | |----|----|----| | x1 | x2 | x3 | | y1 |too long|y3| | z1 | z2 | z3 | The problematic second row can now be split across mulitple lines like this: | H1 | H2 | H3 | |----|----|----| | x1 | x2 | x3 | | y1 |too | y3 |\ | |long| | | z1 | z2 | z3 | While the example is contrived, even with "sloppy" tables, having the ability to merge row data like this usually avoids the need for unsightly long lines when an exceptional cell overflows excessively. Signed-off-by: Kyle J. McKay <mackyle@gmail.com>master
Kyle J. McKay
5 years ago
2 changed files with 100 additions and 2 deletions
Loading…
Reference in new issue