Table
Parameters
id (optional)
class (optional)
text (optional)
Example 1
table class: "foo" do
thead do
tr class: "bar" do
th text: "First"
th text: "Matestack"
th text: "Table"
end
end
tbody do
tr do
td text: "One"
td text: "Two"
td text: "Three"
end
tr do
td text: "Uno"
td text: "Dos"
td text: "Tres"
end
end
tfoot do
tr do
td text: "Eins"
td text: "Zwei"
td text: "Drei"
end
end
endExample 2
Example 3
Last updated
Was this helpful?