Module:CreateButton

From Seven Sages of Rome
Revision as of 16:33, 12 February 2024 by Noeth (talk | contribs)

Documentation for this module may be created at Module:CreateButton/doc

local p = {} --p stands for package

function p.hello( frame )
	local p = mw.html.create("p")
	p
		:wikitext('Test')
		:done()
    local wrapper = mw.html.create( 'html' )
	wrapper
		:tag(p)
	return tostring( wrapper )
end

return p