Module:Test: Difference between revisions
From Test Wiki
Content deleted Content added
No edit summary |
Tag: Rollback |
||
| Line 5: | Line 5: | ||
]] |
]] |
||
local |
local _module = {} |
||
function p.Main(frame) |
|||
return frame:preprocess( '{{support}}' ) |
|||
end |
|||
function p.Main2(frame) |
|||
return frame:preprocess( '{{#ifeq:A|B|true|false}}' ) |
|||
end |
|||
function p.Main3(frame) |
|||
return frame:preprocess( '[[File:Symbol support vote.svg]]' ) |
|||
end |
|||
function p.Main4(frame) |
|||
return "[[File:Symbol support vote.svg]]" |
|||
end |
|||
function p.Main5(frame) |
|||
return "[[File:Symbol support vote.svg]]" |
|||
end |
|||
function p.Main6(frame) |
|||
return frame:expandTemplate{ title = 'Test', args = {frame.args[1]} } |
|||
end |
|||
return p |
|||