Module:Lilytest

From TestWiki
Revision as of 19:55, 11 January 2021 by Lily (talk | contribs)

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

local p = {}

function p.html(frame)
	local mylink = mw.html.create( 'a' ) 
	mylink
	:attr( 'id', 'testdiv' )
	:attr( 'href', 'https://publictestwiki.com')
	:attr('target', '_blank')
end

return p