Module:WCNA 2023 Session Categories
Revision as of 01:51, 11 July 2023 by SuperHamster (talk | contribs) (Seeing if removing parentheses helps with categorizing WikiCred submissions)
Documentation for this module may be created at Module:WCNA 2023 Session Categories/doc
local p = {}
local category_base = "[[Category:Submissions/2023/"
local categories = {
"Recent Changes",
"Community Initiatives",
"Education",
"Equity / Inclusion / Community Health",
"GLAM / Heritage / Culture",
"Governance",
"Languages",
"Legal / Advocacy / Risks",
"Open Data",
"Research / Science / Medicine",
"Technology",
"Wild Ideas",
"Credibility / Mis and Disinformation"
}
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