Module:InfoboxImage

Revision as of 18:48, 28 August 2012 by imported>WOSlinker
Jump to navigation Jump to search

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;