Documentation for this module may be created at Module:FileDescription/doc
local getArgs = require('Module:Arguments').getArgs
local p = {}
function p.main(frame)
local args = getArgs(frame)
if args[1] == nil then return nil end
local imageTitle = mw.title.new(args[1], "File")
local description = imageTitle:getContent()
if description then
return description
else
return nil
end
end
return p