Module:head
Jump to navigation
Jump to search
Documentation for this module may be created at Module:head/documentation
local export = {}
function export.show(frame)
local function make_head(head)
if not string.find(head, " ") then
return head
end
local pieces = {}
for piece in string.gmatch(head, "%S+") do
table.insert(pieces, "[[" .. piece .. "]]")
end
return table.concat(pieces, " ")
end
local params = {
[1] = {required = "true"},
[2] = {required = "true"},
["head"] = {default = make_head(mw.title.getCurrentTitle().text)},
["nocat"] = {type = "boolean"}
}
local args = require("Module:parameters").process(frame:getParent().args, params)
local language = require("Module:languages").get_by_code(args[1])
return "'''" .. args["head"] .. "'''" .. ((args["nocat"] and "") or "[[Category:" .. language.name .. " " .. args[2] .. "s]][[Category:" .. language.name .. " lemmas]]")
end
return export