Module:string utilities/data

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


local list_to_set = require("Module:table").listToSet

local data = {}

data.byte_escapes = {
	 = "\\a",
	 = "\\b",
	 = "\\t",
	 = "\\n",
	 = "\\v",
	 = "\\f",
	 = "\\r"
}

data.nowiki_absolute = list_to_set{"\"", "&", "'", ";", "<", "=", ">", "", "{", "|", "}"}

data.nowiki_after_newline = list_to_set{"\t", "\n", "\r", " ", "#", "*", ":"}

data.nowiki_after_magic_link = list_to_set{"\t", "\n", "\f", "\r", " "}

data.nowiki_uri_schemes = list_to_set{"bitcoin", "geo", "magnet", "mailto", "matrix", "news", "sip", "sips", "sms", "tel", "urn", "xmpp"}

return data