Module:InfoboxImage: Difference between revisions

From Zoophilia Wiki
Jump to navigationJump to search
meta>WOSlinker
No edit summary
meta>WOSlinker
No edit summary
Line 2: Line 2:


function i.InfoboxImage(frame)
function i.InfoboxImage(frame)
     if ustring.sub(frame.args["image"],1,2) == "[[" then
     if string.sub(frame.args["image"],1,2) == "[[" then
         return frame.args["image"];
         return frame.args["image"];
     else
     else

Revision as of 18:48, 28 August 2012

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

local i = {};

function i.InfoboxImage(frame)
    if string.sub(frame.args["image"],1,2) == "[[" then
        return frame.args["image"];
    else
        return "TODO";
    end
end

return i;