Jump to content

Module:FlexGallery

From Climbopedia
Revision as of 19:47, 20 August 2025 by Karl (talk | contribs)

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

local p = {}
local width = int
local a

-- frame.args

p.hi = function(frame)
    for k, v in pairs(frame.args) do
        if k == "name" then
            width = v
            return width
        end
        a = a .. v
    end
	return a
end

return p