Module:User:Mr. Stradivarius/sandbox2
Appearance
p = {}
local HtmlBuilder = require('Module:HtmlBuilder')
function p.test()
root = HtmlBuilder.create('div')
tableroot = root.tag('table')
tablerow1 = tableroot.tag('tr')
tablerow1.tag('td')
tablerow1.tag('td')
tablerow1.tag('td')
tablerow2 = tableroot.tag('tr')
tablerow2.tag('td')
tablerow2.tag('td')
tablerow2.tag('td')
return tostring(root)
end
return p