Module:Purge: Difference between revisions

75 bytes added ,  5 years ago
Created page with "-- This module implements Template:Purge. local p = {} local function makeUrlLink(url, display) return string.format('[%s %s]', url, display) end function p._main(args..."
m (1 revision imported)
en>Centrist16
(Created page with "-- This module implements Template:Purge. local p = {} local function makeUrlLink(url, display) return string.format('[%s %s]', url, display) end function p._main(args...")
Line 30:
-- Make the display
local display = mw.html.create('span')
if args.page then
display
:attr('title',display = args[1] or 'Purge this page')
else
:wikitext(args[1] or 'Purge')
display = tostringmw.html.create(display'span')
display
:attr('title', 'Purge this page')
:wikitext(args[1] or 'Purge')
display = tostring(display)
end
-- Output the HTML
Anonymous user