Module:syllables

From Laenkea
Revision as of 18:31, 24 August 2023 by TheNightAvl (talk | contribs)
Jump to navigation Jump to search

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
	local split = delimiter or "·"
	
	while list[i] do
		if list[i] == "" then
			syllables = syllables .. ", "
			n_i = 1
		else
			if n_i > 1 then syllables = syllables .. split 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"], 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"], args[2])
end

return export