Module:User:Erutuon/script utilities/data

Hello, you have come here looking for the meaning of the word Module:User:Erutuon/script utilities/data. In DICTIOUS you will not only get to know all the dictionary meanings for the word Module:User:Erutuon/script utilities/data, but we will also tell you about its etymology, its characteristics and you will know how to say Module:User:Erutuon/script utilities/data in singular and plural. Everything you need to know about the word Module:User:Erutuon/script utilities/data you have here. The definition of the word Module:User:Erutuon/script utilities/data will help you to be more precise and correct when speaking or writing your texts. Knowing the definition ofModule:User:Erutuon/script utilities/data, as well as those of other words, enriches your vocabulary and provides you with more and better linguistic resources.


local data = {}

data.translit = {
	 = {
		 = "mention-tr",
	},
	 = {
		 = "i",
		 = "e-transliteration",
	},
	 = {
		 = "ltr"
	},
	 = {},
}

for key, value in pairs(data.translit) do
	value.classtable = {  = value.classes, "tr", "Latn" }
	
	value.classes = table.concat(value.classtable, " ")
	
	if not value.tag then
		value.tag = "span"
	end
end

data.faces = {
	 = {
		tag = "i",
		class = "mention",
	},
	 = {
		tag = "strong",
		class = "headword",
	},
	 = {
		prefix = '<span class="hypothetical-star">*</span>',
		tag = "i",
		class = "hypothetical",
	},
	 = {
		tag = "b",
	},
	 = {
		tag = "span",
	},
}

return data