Module:User:ColumbaBush/Syrc-entryname/sandbox

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


local export = {}
local u = mw.ustring.char

function export.makeEntryName(text, lang, sc)

	local replacements = {
		u(0x303), u(0x304), u(0x307), u(0x308), u(0x323), u(0x32E), u(0x330), u(0x331), u(0x711), "" -- tilde, macron, dot above, diaeresis, dot below, breve below, tilde below, macron below, superscript aleph, pthaha, zqapha, rbasa, zlama, hbasa, esasa, rwaha, feminine dot, qushshaya
	}

	for _, replacement in ipairs(replacements) do
		text = mw.ustring.gsub(text, replacement, "")
	end

	return text
end

return export