Module:Ancient Greek/doc

From The Global Wiki
< Module:Ancient Greek
Revision as of 23:26, 20 April 2019 by en>Pppery
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

This is the documentation page for Module:Ancient Greek

Usage

This module transliterates Ancient Greek text. It is based on an old version of the Ancient Greek transliteration module on Wiktionary, with minor modifications to make it callable through a template.

{{#invoke:Ancient Greek|translit|οἷος}}
  • hoîos

The code below uses the basic string functions (for instance, <syntaxhighlight lang="lua" class="" id="" style="" inline="1">str:gsub(...)</syntaxhighlight>) when possible. Ustring functions have to be used when patterns contain sets with multiple-byte characters (for instance, <syntaxhighlight lang="lua" class="" id="" style="" inline="1">"[αΑ]"</syntaxhighlight>), or quantifiers that act on multiple-byte characters (<syntaxhighlight lang="lua" class="" id="" style="" inline="1">"α+"</syntaxhighlight>). And they must be used to correctly get a substring of the ith to the jth Unicode character. In other situations, basic string functions can be used, and are preferred for efficiency's sake, as they don't have to parse the string into codepoints before operating on it.