Module:Etraud/Sandbox1: Difference between revisions

From Pixlies
Content added Content deleted
No edit summary
No edit summary
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
local p = {}
local p = {}


function p.pronoun(frame, ...)
function p.pronoun(frame)
local args = {...}
local args = frame.args


local pronouns = {
local pronouns = {
Line 16: Line 16:
if pronouns[arg] then
if pronouns[arg] then
table.insert(selectedPronouns, pronouns[arg])
table.insert(selectedPronouns, pronouns[arg])
table.insert(categories, "[[Category:Players who use " .. pronouns[arg] .. "]]")
table.insert(categories, "[[Category:Players who are a " .. pronouns[arg] .. "]]")
end
end
end
end

Latest revision as of 06:47, 26 July 2023

Documentation for this module may be created at Module:Etraud/Sandbox1/doc

local p = {}

function p.pronoun(frame)
    local args = frame.args

    local pronouns = {
        he = "he",
        she = "she",
        they = "they"
    }

    local selectedPronouns = {}
    local categories = {}

    for i, arg in ipairs(args) do
        if pronouns[arg] then
            table.insert(selectedPronouns, pronouns[arg])
            table.insert(categories, "[[Category:Players who are a " .. pronouns[arg] .. "]]")
        end
    end

    if #selectedPronouns == 0 then
        return "No valid pronouns specified."
    else
        return table.concat(selectedPronouns, "/") .. table.concat(categories)
    end
end

return p