Skip to content

Commit a4019a3

Browse files
authored
feat: show cell borders to differentiate table entries (#262)
Depends on adbc-drivers/docs.adbc-drivers.org#113.
1 parent 94f8332 commit a4019a3

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • adbc_drivers_validation/templates

adbc_drivers_validation/templates/types.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
</thead>
3737
<tbody>
3838
{% for row in type_select %}
39-
<tr>
39+
<tr{% if len(row) > 2 %} class="row-with-cell-borders"{% endif %}>
4040
{% for span, cell in row %}
4141
{% if loop.index == 1 %}
4242
<td style="text-align: left;">
@@ -88,7 +88,7 @@
8888
</thead>
8989
<tbody>
9090
{% for row in type_bind_ingest %}
91-
<tr>
91+
<tr{% if len(row) > 2 %} class="row-with-cell-borders"{% endif %}>
9292
{% for span, cell in row %}
9393
{% if loop.index == 1 %}
9494
<td style="text-align: left;">

0 commit comments

Comments
 (0)