{{ aspTable({
head: [
{ text: "Column 1" },
{ text: "Column 2" },
{ text: "Column 3 numeric: true",
numeric: true
},
{ text: "Column 4" }
],
rows: [
{
cells: [
{ text: "Row 1, cell 1" },
{ text: "Row 1, cell 2" },
{ number: 1 },
{ text: "Row 1, cell 4. Extra content to demo width" }
]
},
{
cells: [
{ text: "Row 1, cell 1" },
{ text: "Row 1, cell 2" },
{ number: 2 },
{ text: "Row 1, cell 4. Extra content to demo width" }
]
}
]
}) }}