Module:yue-pron/hom/list
Appearance
< Module:yue-pron | hom
- පහත දැක්වෙන උපදෙස්, Module:yue-pron/hom/list/documentation හි පිහිටා ඇත. Module:yue-pron/hom/list/documentation]]. [සංස්කරණය]
- ප්රයෝජනවත් සබැඳි: root page • root page’s subpages • සබැඳි • transclusions • testcases • sandbox
local export = {}
function export.show(frame)
local hom = mw.loadData("Module:yue-pron/hom")
local link = require("Module:zh/link").link
local text = {}
for jyutping, homophones in pairs(hom) do
local append = "\n* " .. jyutping .. ": "
local hom = {}
for _, homophone in ipairs(homophones) do
table.insert(hom, link(nil, nil, { homophone, tr = "-" }))
end
append = append .. table.concat(hom, ", ")
table.insert(text, append)
end
table.sort(text)
return "A list of the Cantonese homophones available:" .. table.concat(text)
end
return export