Jump to content

Module:InfoboxImage

From Continental Storm Service
Revision as of 14:48, 28 August 2012 by u>WOSlinker

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;