Module:languages/data/patterns

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


-- Capture patterns used by ] to prevent formatting from being disrupted while text is being processed.
-- Certain character sequences are substituted beforehand to make pattern matching more straightforward:
-- "\1" = "[["
-- "\2" = "]]"
return {
	"((</?link>))\0", -- Special link formatting added by ]
	"((<+>))", -- HTML tag
	"((\1:+\2))\0", -- File
	"((\1:+\2))\0", -- Image
	"((\1:+\2))\0", -- Category
	"((\1:+\2))\0", -- Category
	"((\1)+(\2))\0", -- Bare internal link
	"((\1)-(|)-(\2))\0", -- Piped internal link
	"((% ]+)]*(%]))\0", -- External link
	"((\127'\"`UNIQ%-%-%l+%-%x+%-+QINU`\"'\127))", -- Strip marker
	"('*(''').-'*('''))", -- Bold
	"('*('').-'*(''))" -- Italics
}