Module:siwa-pron

From Linguifex
Revision as of 13:05, 23 December 2020 by Sware (talk | contribs)
Jump to navigation Jump to search


local export = {}
	
m_IPA = require("Module:IPA")

function export.show(frame)
	IPA_key = "IPA for Siwa"
	key_link = "[[" .. IPA_key .. "|key]]"

	local prefix = "[[wikt:Wiktionary:International Phonetic Alphabet|IPA]]<sup>(" .. key_link .. ")</sup>:&#32;"
	
	trans = "<span style=\"font-size:110%;font-family:Gentium,'DejaVu Sans','Segoe UI',sans-serif>[" .. mw.title.getCurrentTitle().text .. "]</span>"

	output = prefix..trans
	
	return output
end

return export