From 346d0aabb699d439385cc01f68818b5a34d7ad76 Mon Sep 17 00:00:00 2001 From: the_og Date: Tue, 7 Jul 2026 20:30:35 -0400 Subject: [PATCH] =?UTF-8?q?fix:=20use=20=C2=A0=20escape=20for=20non-breaki?= =?UTF-8?q?ng=20space=20(byte-exact=20transcription=20fix)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bcc_core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bcc_core.py b/bcc_core.py index c3b3f46..e5bcc46 100644 --- a/bcc_core.py +++ b/bcc_core.py @@ -474,7 +474,7 @@ def _normalize_unicode(text: str, notes: list[str]) -> str: out = text for junk in _JUNK_CHARS: out = out.replace(junk, "") - out = out.replace(" ", " ") # non-breaking space + out = out.replace(" ", " ") # non-breaking space for smart, ascii_q in _QUOTE_MAP.items(): out = out.replace(smart, ascii_q) if out != text: