local StaffNames = mw.loadData('Module:StaffCorrection/data') local p = {} function p.Correction( name ) name = mw.text.trim( name ) if type( StaffNames[ string.lower( name ) ] ) == "string" then return StaffNames[ string.lower( name ) ] else return name end end function p.Correction_Wikitext(frame) return p.Correction(frame.args[1]) end return p
Community content is available under CC-BY-SA
unless otherwise noted.