Modul:scripts/doc
Ez a lap a Modul:scripts dokumentációja. Ez a lap tartalmazza a modul használati útmutatóját és kategóriáit. |
This module is used to retrieve and manage Wiktionary's various writing systems and the information associated with them. See Wiktionary:Scripts for more information.
The information itself is stored in Module:scripts/data. The data module should not be used directly by any other module, the data should only be accessed through the functions provided by Module:scripts.
For functions that allow templates to use this module, see Module:scripts/templates.
Finding and retrieving scripts
szerkesztésThe module exports a number of functions that are used to find scripts.
getByCode
szerkesztésgetByCode(code)
Finds the script whose code matches the one provided. If it exists, it returns a Script
object representing the script. Otherwise, it returns nil
.
findBestScript
szerkesztésfindBestScript(text, lang)
Given some text and a language object, this function iterates through the scripts of the given language and tries to find the script that best matches the text. It returns a Script
object representing the script. If no match is found at all, it returns the None
script object.
findBestScriptWithoutLang
szerkesztésfindBestScriptWithoutLang(text)
Returns the code for the script that has the greatest number of characters in text
. Useful for script tagging text that is unspecified for language. Uses Module:scripts/recognition data to determine a script code for a character language-agnostically.
Script objects
szerkesztésA Script
object is returned from one of the functions above. It is a Lua representation of a script and the data associated with it. It has a number of methods that can be called on it, using the :
syntax. For example:
local m_scripts = require("Module:scripts")
local sc = m_scripts.getByCode("Latn")
local name = sc:getCanonicalName()
-- "name" will now be "Latin"
Script:getCode
szerkesztés:getCode()
Returns the script code of the language. Example: "Cyrl"
for Cyrillic.
Script:getCanonicalName
szerkesztés:getCanonicalName()
Returns the canonical name of the script. This is the name used to represent that script on Wiktionary. Example: "Cyrillic"
for Cyrillic.
Script:getParent
szerkesztés:getParent()
Returns the parent of the script. Example: "Latn"
for "Latinx"
and "Arab"
for "fa-Arab"
. It returns "top"
for scripts without a parent, like "Latn"
, "Grek"
, etc.
Script:getWikipediaArticle
szerkesztés:getWikipediaArticle()
Returns the wikipedia_article
item in the language's data file, or else calls Script:getCategoryName()
.
Script:countCharacters
szerkesztés:countCharacters(text)
Returns the number of characters in the text that are part of this script.
Note: You should never rely on text consisting entirely of the same script. Strings may contain spaces, punctuation and even wiki markup or HTML tags. HTML tags will skew the counts, as they contain Latin-script characters. So it's best to avoid them.
Script:getCharacters
szerkesztés:getCharacters()
Returns the regex defining the script's characters from the language's data file.
This can be used to search for words consisting only of this script, but see the warning above.
Script:getCategoryName
szerkesztés:getCategoryName()
Returns the name of the main category of that script. Example: "Cyrillic script"
for Cyrillic, whose category is at Category:Cyrillic script.
Script:getDirection
szerkesztés:getDirection()
Returns the text direction, if any. Currently, left-to-right scripts are unmarked, while most right-to-left scripts have direction specified as "rtl"
and Mongolian as "down"
.
Subpages
szerkesztésSee also
szerkesztés