dev
Documentation icon Module documentation
[create]

The documentation for this module is missing. Click here to create it.

local p = {}
 
function p.hello()
	local link = mw.html.create('span')
	--link:attr('src', 'https://mashpoe.com')
	link:wikitext('[https://mashpoe.com <span style="background-color: blue">Official Mashpoe Website</span>]')
    return tostring(link)
end
 
return p