မော်ဂျူး:my-headword
ပုံပန်းသွင်ပြင်
Documentation for this module may be created at မော်ဂျူး:my-headword/doc
local export = {}
local pos_functions = {}
local lang = require("Module:languages").getByCode("my")
local script = require("Module:scripts").getByCode("Mymr")
local PAGENAME = mw.title.getCurrentTitle().text
function export.show(frame)
local args = frame:getParent().args
local poscat = frame.args[1] or error("Part of speech has not been specified. Please pass parameter 1 to the module invocation.")
local head = args["head"] or PAGENAME
local tr = args["tr"]
local data = {
lang = lang,
pos_category = poscat,
categories = {},
heads = {head},
translits = {tr},
inflections = {}
}
if args["cat2"] then
table.insert(data.categories, "မြန်မာ " .. args["cat2"])
end
if args["cat3"] then
table.insert(data.categories, "မြန်မာ " .. args["cat3"])
end
if pos_functions[poscat] then
pos_functions[poscat](args, data)
end
local content = mw.title.new(PAGENAME):getContent()
local code = mw.ustring.match(content, "{{my%-IPA[^}]*}}")
if not code then
table.insert(data.categories, "my-IPA တမ်းပလိတ်မပါသော မြန်မာ ဝေါဟာရများ")
end
return require("Module:headword").full_headword(data)
end
pos_functions["နာမ်များ"] = function(args, data)
local classifiers = {label = "ရေတွက်ပုံ"}
if args[1] then
for _,par in ipairs(args) do
if par == "*" then
table.insert(classifiers, PAGENAME) -- shorthand
table.insert(data.categories, "မြန်မာ ရေတွက်ပုံများ")
table.insert(data.categories, PAGENAME .. " ဖြင့် ရေတွက်သော မြန်မာ နာမ်များ")
else
table.insert(classifiers, par)
table.insert(data.categories, par .. " ဖြင့် ရေတွက်သော မြန်မာ နာမ်များ")
end
end
table.insert(data.inflections, classifiers)
end
end
return export