From 8eb0d1101a8b63aa39ad60a6a426d0fab13f0f91 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Guilhem=20Faur=C3=A9?= Date: Thu, 11 May 2023 16:20:24 +0200 Subject: [PATCH] =?UTF-8?q?add=20conversion=20=C3=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- spip2md/convert.py | 4 ++++ 1 file changed, 4 insertions(+) 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"í",