Module:script utilities/data

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

This module needs documentation.
Please document this module by describing its purpose and usage on the documentation page.

local data = {}

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

data.transcription = {
	 = {
		 = "span",
		 = "headword-ts",
		 = "ltr",
	},
	 = {
		tag = "span",
		 = "e-transcription",
	},
	 = {},
}

for key, value in pairs(data.translit) do
	if not value.tag then
		value.tag = "span"
	end
end

local faces = {}

faces = {
	tag = "i",
	class = "mention",
}

faces = {
	tag = "strong",
	class = "headword",
}

faces = {
	prefix = '<span class="hypothetical-star">*</span>',
	tag = "i",
	class = "hypothetical",
}

faces = {
	tag = "b",
}

faces = {
	tag = "span",
}

faces = faces

data.faces = faces

return data