Module:Imahero/test: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 2: | Line 2: | ||
function p.testing(frame) | function p.testing(frame) | ||
compile = '' | |||
compile = compile..frame:expandTemplate{title = 'exist', args = {'file:Hero Solmyr small.gif', '[[file:Hero Solmyr small.gif]]'}} | |||
compile = compile..frame:expandTemplate{title = 'exist', args = {'file:Hero Missingno small.gif', '[[file:Hero Missingno small.gif]]'}} | |||
return compile | |||
end | end | ||
Revision as of 23:29, 19 December 2023
See usage on user:imahero/test.
local p = {} --p stands for package
function p.testing(frame)
compile = ''
compile = compile..frame:expandTemplate{title = 'exist', args = {'file:Hero Solmyr small.gif', '[[file:Hero Solmyr small.gif]]'}}
compile = compile..frame:expandTemplate{title = 'exist', args = {'file:Hero Missingno small.gif', '[[file:Hero Missingno small.gif]]'}}
return compile
end
function p.getheight(frame)
-- mw.title.makeTitle(namespace, title, fragment, interwiki)
map = mw.title.makeTitle(6, "A Cold Day in Hell map large.png")
return map.file.height
end
function p.test( frame )
return frame
end
langObject = mw.getLanguage( 'simple' )
function p.language( frame )
return langObject:getCode()
end
function p.arrow( frame )
return langObject:getArrow( frame.args.direction )
end
return p