Module:WCNA 2019 Session Categories

From WikiConference North America
Revision as of 04:44, 22 September 2019 by Enterprisey (talk | contribs) (fix)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

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
    return categories
end

return p