Module:Lilytest

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

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

local p = {}
-- {{#invoke:Lilytest|html}}
function p.html(frame)
	local mylink = mw.html.create( 'a' ) 
	mylink
	:attr( 'id', 'testdiv' )
	:attr( 'href', 'https://publictestwiki.com')
	:attr('target', '_blank')
	:wikitext( 'Link Testtext' )
end

return p