모듈:연습장/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