View source for Module:also

Jump to navigation Jump to search

You do not have permission to edit this page, for the following reason:

The action you have requested is limited to users in the group: Users.


You can view and copy the source of this page.

local export = {}
local m_links = require("Module:links")
local getArgs = require('Module:Arguments').getArgs
function export.codify(text) --removes diacritics and non-alphanumeric characters, converts to upper case
text = mw.ustring.toNFC(text)
text = mw.ustring.lower(text)
text = mw.ustring.gsub(text,"[áàâäǎăāãåąắăằắẳẵặâầẩẫấậả]","a")
text = mw.ustring.gsub(text,"[æǣǽ]","ae")
text = mw.ustring.gsub(text,"[ćċĉčç]","c")
text = mw.ustring.gsub(text,"[ďđḍðḑ]","d")
text = mw.ustring.gsub(text,"[éèėêëěĕēẽęẹɛǝəềểễếệ]","e")
text = mw.ustring.gsub(text,"[ġĝğģ]","g")
text = mw.ustring.gsub(text,"[ĥħḥḩ]","h")
text = mw.ustring.gsub(text,"[ıíìîïǐĭīĩįị]","i")
text = mw.ustring.gsub(text,"[ĵ]","j")
text = mw.ustring.gsub(text,"[ķ]","k")
text = mw.ustring.gsub(text,"[ĺŀľļłḷḹ]","l")
text = mw.ustring.gsub(text,"[ṃ]","m")
 
 
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
000
1:0
Debug console
* The module exports are available as the variable "p", including unsaved modifications. * Precede a line with "=" to evaluate it as an expression or use print(). Use mw.logObject() for tables. * Use mw.log() and mw.logObject() in module code to send messages to this console.

Return to Module:also.