Module:siwa-pron

From Linguifex
Revision as of 20:31, 18 December 2020 by Sware (talk | contribs)
Jump to navigation Jump to search


local export = {}
	
	local m_IPA = require("Module:IPA")
	local m_lang = require("Module:languages").getByCode("en")
	local transcription = "ˈsivi"
	
	function export.result(frame)

		return "<span style=\"font-size:110%;font-family:Gentium,'DejaVu Sans','Segoe UI',sans-serif>" .. m_IPA.format_IPA_full(m_lang, { { pron = '[' .. transcription .. ']' } }) .. "</span>"
	end

return export