Difference between revisions of "Module:WCNA 2024 Session Categories"
Jump to navigation
Jump to search
(Changed to 2024 categories) |
m ("/"→"+") |
||
Line 11: | Line 11: | ||
"Legal & Advocacy", |
"Legal & Advocacy", |
||
"Open Data", |
"Open Data", |
||
− | "Governance |
+ | "Governance + Strategy", |
"Wild Ideas" |
"Wild Ideas" |
||
} |
} |
Revision as of 19:52, 11 April 2024
Documentation for this module may be created at Module:WCNA 2024 Session Categories/doc
local p = {}
local category_base = "[[Category:Submissions/2024/"
local categories = {
"GLAM",
"Partnerships",
"Technology",
"Community Engagement",
"Community Health",
"Research",
"Legal & Advocacy",
"Open Data",
"Governance + Strategy",
"Wild Ideas"
}
function p.main( frame )
output = ""
for index, value in ipairs(categories) do
if string.match(frame.args["1"], value) then
output = output .. category_base .. string.gsub(value, " / ", ", ") .. "]]"
end
end
return output
end
return p