2,788
edits
(Created page with "local export = {} local params = { [1] = {alias_of = "r"}, r = {default = mw.title.getCurrentTitle().text}, n = {}, nocat = {type = "boolean"}, } local IRREG_MARKER = "<sup>△</sup>" local UNCHANGED_MARKER = "<i>unchanged</i>" local function is_vowel(c) return c == "a" or c == "e" or c == "i" or c == "í" or c == "o" or c == "ó" or c == "u" end local function is_labial_consonant(c) return c == "p" or c == "b" end local function n_is_exempt(c) return c == "m...") |
No edit summary |
||
Line 42: | Line 42: | ||
local args = require("Module:parameters").process(frame:getParent().args, params) | local args = require("Module:parameters").process(frame:getParent().args, params) | ||
local r = args["r"] | local r = args["r"] | ||
local n, n_irregular = n_mutate(radical, args["n"]) | local n, n_irregular = export.n_mutate(radical, args["n"]) | ||
local ret = '{| style="display:table; width:60%; border: 1px solid #b3b3b3; font-size: 95%; text-align: center;' | local ret = '{| style="display:table; width:60%; border: 1px solid #b3b3b3; font-size: 95%; text-align: center;' | ||
ret = ret .. '\n|-' | ret = ret .. '\n|-' |