모듈:연습장/Motoko C. K./html

local p = {}

function p.main ()

 local root = mw.html.create()
 local td1 = root:tag('table'):tag('tr')
   td1
    :tag('td')
    :wikitext('example text1')
    :tag('td')
    :wikitext('example text2')

 return tostring(root)
end

return p