Difference between revisions of "Module:Infobox Task"
Jump to navigation
Jump to search
(Created page with "local p = {}; function p.categorise(frame) local categories = frame:getParent().args[1] local ret = "Category:Tasks" for v in string.gmatch(ids, "([A-Za-z]+)") do...") |
m |
||
(2 intermediate revisions by the same user not shown) | |||
Line 2: | Line 2: | ||
function p.categorise(frame) | function p.categorise(frame) | ||
− | local | + | local parent = frame:getParent().args |
+ | local categories = parent[1] | ||
local ret = "[[Category:Tasks]]" | local ret = "[[Category:Tasks]]" | ||
− | for v in string.gmatch( | + | for v in string.gmatch(categories, "([A-Za-z]+)") do |
− | ret = ret .. "[[Category:" .. v .. "]]" | + | ret = ret .. "[[Category:Tasks in " .. v .. " tier]]" |
+ | if (v == "Passive") then | ||
+ | local stars = parent[2] | ||
+ | ret = ret .. "[[Category:" .. stars .. "-star Passive tasks]]" | ||
+ | end | ||
end | end | ||
return ret | return ret |
Latest revision as of 15:25, 18 May 2020
Documentation for this module may be created at Module:Infobox Task/doc
local p = {}; function p.categorise(frame) local parent = frame:getParent().args local categories = parent[1] local ret = "[[Category:Tasks]]" for v in string.gmatch(categories, "([A-Za-z]+)") do ret = ret .. "[[Category:Tasks in " .. v .. " tier]]" if (v == "Passive") then local stars = parent[2] ret = ret .. "[[Category:" .. stars .. "-star Passive tasks]]" end end return ret end return p