Modul:0links/data

Üdvözlöm, Ön a Modul:0links/data szó jelentését keresi. A DICTIOUS-ban nem csak a Modul:0links/data szó összes szótári jelentését megtalálod, hanem megismerheted az etimológiáját, a jellemzőit és azt is, hogyan kell a Modul:0links/data szót egyes és többes számban mondani. Minden, amit a Modul:0links/data szóról tudni kell, itt található. A Modul:0links/data szó meghatározása segít abban, hogy pontosabban és helyesebben fogalmazz, amikor beszélsz vagy írsz. AModul:0links/data és más szavak definíciójának ismerete gazdagítja a szókincsedet, és több és jobb nyelvi forráshoz juttat.

A modult a Modul:0links/data/doc lapon tudod dokumentálni

local u = require("Module:0string utilities").char

local data = {}

data.phonetic_extraction = {
	 = "Module:0th",
	 = "Module:0km",
}

data.ignored_prefixes = {
	 = true,
	 = true,
	 = true,
	 = true
}

data.pos_tags = {
	 = "adjective",
	 = "adverb",
	 = "interjection",
	 = "noun",
	 = "pronoun",
	 = "verb",
	 = "intransitive verb",
	 = "transitive verb",
	 = "transitive and intransitive verb",
}

-- Scheme for using unsupported characters in titles.
data.unsupported_characters = {
	 = "`num`",
	 = "`percnt`", -- only escaped in percent encoding
	 = "`amp`", -- only escaped in HTML entities
	 = "`period`", -- only escaped in dot-slash notation
	 = "`lt`",
	 = "`gt`",
	 = "`lsqb`",
	"] = "`rsqb`",
	 = "`lowbar`",
	 = "`grave`", -- used to enclose unsupported characters in the scheme, so a raw use in an unsupported title must be escaped to prevent interference
	 = "`lcub`",
	 = "`vert`",
	 = "`rcub`",
	 = "`tilde`", -- only escaped when 3 or more are consecutive
	 = "`repl`" -- replacement character U+FFFD, which can't be typed directly here due to an abuse filter
}

-- Manually specified unsupported titles. Only put titles here if there is a different reason why they are unsupported, and not just because they contain one of the unsupported characters above.
data.unsupported_titles = {
	 = "Space",
	 = "`amp`amp;",
	 = "Ancient Greek dish",
	 = "Thai name of Bangkok",
	 = "Ogham space",
	 = "Ideographic space"
}

return data