(index ("accents-substitute" 0) ("accents-substitute-latin1" 301) ("accents-substitute-utf8" 624))
(def (sig (procedure "(accents-substitute str #!key mode)" (id accents-substitute))) (p "Substitute accented characters in " (tt "str") " by non accented ASCII characters (if " (tt "mode") " is not given or is given as " (tt "'ascii") ") or by HTML entities (if mode is given as " (tt "'html") ")."))
(def (sig (procedure "(accents-substitute-latin1 str #!key mode)" (id accents-substitute-latin1))) (p "Substitute Latin-1 accented characters in " (tt "str") " by non accented ASCII characters (if " (tt "mode") " is not given or is given as " (tt "'ascii") ") or by HTML entities (if mode is given as " (tt "'html") ")."))
(def (sig (procedure "(accents-substitute-utf8 str #!key mode)" (id accents-substitute-utf8))) (p "Substitute UTF-8 accented characters in " (tt "str") " by non accented ASCII characters (if " (tt "mode") " is not given or is given as " (tt "'ascii") ") or by HTML entities (if mode is given as " (tt "'html") ")."))
