Spanning cells in a DSV table
Posted by jolly on Apr 20, 2020; 5:39pm
URL: https://discuss.asciidoctor.org/Spanning-cells-in-a-DSV-table-tp7918.html
I understand how to span a cell across two rows with a PSV formatted table (.2+|). But is this possible with a DSV table like below? Would like to have the A value span to the row below. I just don't seem to be able to figure it out.
[width="100%",cols="^3,6",format="dsv",options="header"]
|====================================
CATEGORY:VALUE
A:123456
:567890
B:525722
|====================================
I also have each non-blank element wrapped in the small CSS class to reduce the table text size. Is there a more efficent way to do this? Am flexible with the table input style.
[width="100%",cols="^3,6",format="dsv",options="header"]
|====================================
[small]#CATEGORY#:[small]#VALUE#
[small]#A#:[small]#123456#
:[small]#567890#
[small]#B#:[small]#525722#
|====================================
Many thanks
j.