Module:IPA: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 5: | Line 5: | ||
nolarge = {type = "boolean"}, | nolarge = {type = "boolean"}, | ||
linked = {type = "boolean"}, | linked = {type = "boolean"}, | ||
nopre = {type = "boolean"}, | |||
} | } | ||
Line 14: | Line 15: | ||
end | end | ||
local language_pron = "Appendix:" .. language.name .. "_pronunciation" | local language_pron = "Appendix:" .. language.name .. "_pronunciation" | ||
out = "[[w:International_Phonetic_Alphabet|IPA]]" | out = "" | ||
if not args["nopre"] then | |||
out = out .. "[[w:International_Phonetic_Alphabet|IPA]]" | |||
out = out .. "<sup>([[" .. language_pron .. "|key]])</sup>: " | |||
end | |||
local class = "IPA" | local class = "IPA" | ||
if args["nolarge"] then class = class .. " nolarge" end | if args["nolarge"] then class = class .. " nolarge" end |
Revision as of 16:19, 9 February 2024
{{IPA}}
local export = {}
local params = {
[1] = {},
[2] = {list = true},
nolarge = {type = "boolean"},
linked = {type = "boolean"},
nopre = {type = "boolean"},
}
function export.show(frame)
local args = require("Module:parameters").process(frame:getParent().args, params)
local language = require("Module:languages").get_by_code(args[1])
if language == nil then
error("No such language: " .. args[1])
end
local language_pron = "Appendix:" .. language.name .. "_pronunciation"
out = ""
if not args["nopre"] then
out = out .. "[[w:International_Phonetic_Alphabet|IPA]]"
out = out .. "<sup>([[" .. language_pron .. "|key]])</sup>: "
end
local class = "IPA"
if args["nolarge"] then class = class .. " nolarge" end
for i, i_ipa in ipairs(args[2]) do
if i > 1 then out = out .. ", " end
out = out .. '<span class="' .. class .. '">'
if args["linked"] then
out = out .. "[[" .. language_pron .. "|" .. i_ipa .. "]]"
else
out = out .. i_ipa
end
out = out .. "</span>"
end
return out
end
return export