Jump to content

Module:Latin

Permanently protected module
From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Rich Farmbrough (talk | contribs) at 02:12, 4 August 2014 (Replaced content with 'local p = {} function p.removeaccents(frame) local rv=frame.args[1] rv = string.gsub(rv,"[ÁÀÂÄǍĂĀÃÅĄ]","A") return rv end return p'). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
local p = {}

function p.removeaccents(frame)
   local rv=frame.args[1]

   rv = string.gsub(rv,"[ÁÀÂÄǍĂĀÃÅĄ]","A")
   return rv
end
 
return p