RosettaCodeData/Task/Create-an-HTML-table/Jq/create-an-html-table-2.jq

8 lines
153 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
def data:
[ [4,5,6],
[41, 51, 61],
[401, 501, 601] ];
# The first column has no header
data | html_table_with_sequence( ["", "X", "Y", "Z"] )