How to make formatted tables using WL and HTML? #288
JerryI
started this conversation in
WLX & HTML
Replies: 1 comment
-
Using HTML cells or WLX it is also quite easy and can be generated from the data data = Table[RandomWord[], {i, 4}, {j, 4}]; .wlx
With[{ TableBody =
Table[
With[{Row = Table[
<td class="px-3 py-2">
<Item/>
</td>
, {Item, Rows}]},
<tr class="bg-white border-b">
<Row/>
</tr>
]
, {Rows, data}]
},
<table class="table-auto">
<TableBody/>
</table>
] |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
How about tables GitHub-Markdown style? (To show matrices.)
Or HTML tables…
Beta Was this translation helpful? Give feedback.
All reactions