diff --git a/spip2md/convert.py b/spip2md/convert.py index 070dbcd..88afff0 100644 --- a/spip2md/convert.py +++ b/spip2md/convert.py @@ -232,6 +232,10 @@ isoToUtf = ( re.compile("•"), r"•", ), + ( # Fix UTF-8 ç that was interpreted as ISO 8859-1 + re.compile("ç"), + r"ç", + ), ( # Fix UTF-8 í that was interpreted as ISO 8859-1 re.compile("iÌ\u0081"), r"í",