Module:syllables: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
TheNightAvl (talk | contribs) mNo edit summary |
||
(9 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
local export = {} | local export = {} | ||
local m_languages = require("Module:languages") | |||
local m_parameters = require("Module:parameters") | |||
local params = { | |||
local syllables = | [1] = {required = true}, | ||
local i = | [2] = {list = true, allow_empty = true}, | ||
while | ["caption"] = {}, | ||
if | ["delimiter"] = {}, | ||
} | |||
function export.make_syllables(language, caption, delimiter, list) | |||
local syllables = "" | |||
local i = 1 | |||
local n_i = 1 | |||
while list[i] do | |||
if list[i] == "" then | |||
syllables = syllables .. ", " | |||
n_i = 1 | |||
else | |||
if n_i > 1 then syllables = syllables .. delimiter end | |||
syllables = syllables .. list[i] | |||
n_i = n_i + 1 | |||
end | |||
i = i + 1 | i = i + 1 | ||
end | end | ||
return caption .. ': <span style="font-size:110%;">' .. syllables .. '</span>' | |||
end | |||
function export.show_syllables(frame) | |||
local args = m_parameters.process(frame:getParent().args, params) | |||
return export.make_syllables(m_languages.get_by_code(args[1]), args["caption"] or "Syllabification", args["delimiter"] or "·", args[2]) | |||
end | |||
function export.show_hyphens(frame) | |||
local args = m_parameters.process(frame:getParent().args, params) | |||
return export.make_syllables(m_languages.get_by_code(args[1]), args["caption"] or "Hyphenation", args["delimiter"] or "·", args[2]) | |||
end | end | ||
return export | return export |
Latest revision as of 18:35, 24 August 2023
Documentation for this module may be created at Module:syllables/documentation
local export = {}
local m_languages = require("Module:languages")
local m_parameters = require("Module:parameters")
local params = {
[1] = {required = true},
[2] = {list = true, allow_empty = true},
["caption"] = {},
["delimiter"] = {},
}
function export.make_syllables(language, caption, delimiter, list)
local syllables = ""
local i = 1
local n_i = 1
while list[i] do
if list[i] == "" then
syllables = syllables .. ", "
n_i = 1
else
if n_i > 1 then syllables = syllables .. delimiter end
syllables = syllables .. list[i]
n_i = n_i + 1
end
i = i + 1
end
return caption .. ': <span style="font-size:110%;">' .. syllables .. '</span>'
end
function export.show_syllables(frame)
local args = m_parameters.process(frame:getParent().args, params)
return export.make_syllables(m_languages.get_by_code(args[1]), args["caption"] or "Syllabification", args["delimiter"] or "·", args[2])
end
function export.show_hyphens(frame)
local args = m_parameters.process(frame:getParent().args, params)
return export.make_syllables(m_languages.get_by_code(args[1]), args["caption"] or "Hyphenation", args["delimiter"] or "·", args[2])
end
return export