Module:IPA/X-SAMPA: Revision history

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

9 February 2023

  • curprev 13:2313:23, 9 February 2023Jācōbus talk contribs 3,525 bytes +3,525 Created page with "local export = {} local m_XSAMPA = mw.loadData('Module:IPA/data/X-SAMPA') -- IPA <-> XSAMPA lookup tables local i2x_lookup = {} local function Populate_IPA_XSAMPA_LookupTables() if #i2x_lookup == 0 then for XSAMPA_symbol, data in pairs(m_XSAMPA) do local IPA_symbol = data[1] i2x_lookup[IPA_symbol] = XSAMPA_symbol local with_descender = data.with_descender if with_descender then i2x_lookup[with_descender] = XSAMPA_symbol end end end return..."