Difference between revisions of "Module:WCNA 2019 Session Categories"
Jump to navigation
Jump to search
Enterprisey (talk | contribs) (?) |
Enterprisey (talk | contribs) (expand, because it worked) |
||
(One intermediate revision by the same user not shown) | |||
Line 5: | Line 5: | ||
function p.main( frame ) |
function p.main( frame ) |
||
categories = "" |
categories = "" |
||
− | if frame.args["1"] |
+ | if string.match(frame.args["1"], "Reliability") then |
categories = categories .. categories_base .. "Reliability]]" |
categories = categories .. categories_base .. "Reliability]]" |
||
+ | end |
||
+ | if string.match(frame.args["1"], "Inclusion") then |
||
+ | categories = categories .. categories_base .. "Inclusion & Diversity]]" |
||
+ | end |
||
+ | if string.match(frame.args["1"], "Relationship Building") then |
||
+ | categories = categories .. categories_base .. "Relationship Building & Support]]" |
||
+ | end |
||
+ | if string.match(frame.args["1"], "Editor Recruitment") then |
||
+ | categories = categories .. categories_base .. "Editor Recruitment & Retention]]" |
||
+ | end |
||
+ | if string.match(frame.args["1"], "Tech") then |
||
+ | categories = categories .. categories_base .. "Tech & Tools]]" |
||
+ | end |
||
+ | if string.match(frame.args["1"], "Harassment") then |
||
+ | categories = categories .. categories_base .. "Harassment, Civility, & Safety]]" |
||
end |
end |
||
return categories |
return categories |
Latest revision as of 04:50, 22 September 2019
Documentation for this module may be created at Module:WCNA 2019 Session Categories/doc
local p = {}
local categories_base = "[[Category:Submissions/2019/"
function p.main( frame )
categories = ""
if string.match(frame.args["1"], "Reliability") then
categories = categories .. categories_base .. "Reliability]]"
end
if string.match(frame.args["1"], "Inclusion") then
categories = categories .. categories_base .. "Inclusion & Diversity]]"
end
if string.match(frame.args["1"], "Relationship Building") then
categories = categories .. categories_base .. "Relationship Building & Support]]"
end
if string.match(frame.args["1"], "Editor Recruitment") then
categories = categories .. categories_base .. "Editor Recruitment & Retention]]"
end
if string.match(frame.args["1"], "Tech") then
categories = categories .. categories_base .. "Tech & Tools]]"
end
if string.match(frame.args["1"], "Harassment") then
categories = categories .. categories_base .. "Harassment, Civility, & Safety]]"
end
return categories
end
return p