Jump to content

Module:FlexGallery

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

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

local p = {}
local width
local images = {}
local thumbnails = {}

-- frame.args

p.hi = function(frame)
    for k, v in pairs(frame.args) do
        -- v = v:gsub("[\n\r]", "")
        if k == 1 then
            width = tonumber(v)
        end
        
    end
end

return p