Module:FlexGallery: Difference between revisions
Appearance
No edit summary |
No edit summary |
||
| Line 1: | Line 1: | ||
local p = {} | local p = {} | ||
local width = | local width = 120 | ||
local a = | local a = "" | ||
-- frame.args | -- frame.args | ||
Revision as of 19:48, 20 August 2025
Documentation for this module may be created at Module:FlexGallery/doc
local p = {}
local width = 120
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