Module:grc-utilities/documentation
This module contains four functions, three of which are called by other modules.
standardDiacritics
takes spacing or nonstandard diacritics and converts them to standard combining diacritics. This function is used by pronunciationOrder
.
reorderDiacritics
takes the diacritics, removes them from the letter (mw.ustring.toNFD
), and reorders them so that macrons or breves are first; diaeresis or breathing mark is second; acute, grave, or circumflex is third; and iota subscript is last. Aside from the iota subscript part, this is the only order in which the diacritics can display correctly, as explained elsewhere. This function is used by Module:typing-aids and {{chars}}
.
- Lua දෝෂය in Module:languages/data/3/g at line 2284: attempt to call field '?' (a nil value).
pronunciationOrder
does the same thing, except it puts the macron or breve and iota subscript last and recombines the diacritics (mw.ustring.toNFC
) after reordering them. The diaeresis or breathing mark and accent mark will recombine, while the macron and breve remains uncombined as a combining character. This function is used by Module:grc-pronunciation and {{grc-IPA}}
.
Module:grc-utilities/data holds the diacritic definitions and substitutions that are used by this module.
Tokenization
[සංස්කරණය]The function tokenize
breaks the text into meaningful units of a single consonant or monophthong letter, or diphthong, with any diacritics, as shown below. This function is used by Module:grc-translit and Module:grc-accent, and by the sandbox module Module:grc-pronunciation/sandbox.
The first argument is the word to be tokenized. The second is a boolean: if true, the function will group Lua දෝෂය in Module:languages/data/3/g at line 2284: attempt to call field '?' (a nil value). together as a diphthong, for instance in Lua දෝෂය in Module:languages/data/3/g at line 2284: attempt to call field '?' (a nil value)., genitive of Lua දෝෂය in Module:languages/data/3/g at line 2284: attempt to call field '?' (a nil value)..
word | tokens
Lua දෝෂය in Module:languages/data/3/g at line 2284: attempt to call field '?' (a nil value). Lua දෝෂය in Module:languages/data/3/g at line 2284: attempt to call field '?' (a nil value). Lua දෝෂය in Module:languages/data/3/g at line 2284: attempt to call field '?' (a nil value). Lua දෝෂය in Module:languages/data/3/g at line 2284: attempt to call field '?' (a nil value). Lua දෝෂය in Module:languages/data/3/g at line 2284: attempt to call field '?' (a nil value). Lua දෝෂය in Module:languages/data/3/g at line 2284: attempt to call field '?' (a nil value). Lua දෝෂය in Module:languages/data/3/g at line 2284: attempt to call field '?' (a nil value). Lua දෝෂය in Module:languages/data/3/g at line 2284: attempt to call field '?' (a nil value). Lua දෝෂය in Module:languages/data/3/g at line 2284: attempt to call field '?' (a nil value). Lua දෝෂය in Module:languages/data/3/g at line 2284: attempt to call field '?' (a nil value). Lua දෝෂය in Module:languages/data/3/g at line 2284: attempt to call field '?' (a nil value). |
---|
Testcases
[සංස්කරණය]Lua දෝෂය in Module:languages/data/3/g at line 2284: attempt to call field '?' (a nil value).