15 lines
393 B
Plaintext
15 lines
393 B
Plaintext
$newline never
|
|
<table .table .table--striped .table--hover>
|
|
<thead>
|
|
<tr .table__row .table__row--head>
|
|
$forall header <- headers
|
|
<th .table__th .table__th--csv>
|
|
#{header}
|
|
<tbody>
|
|
$forall row <- csvData
|
|
<tr .table__row>
|
|
$forall cell <- row
|
|
<td .table__td .table__td--csv>
|
|
$maybe cellText <- cell
|
|
#{cellText}
|