From 0f1cdbef3c1fa416a769c5a1df9d350f081f99c7 Mon Sep 17 00:00:00 2001 From: the_og Date: Tue, 7 Jul 2026 20:22:45 -0400 Subject: [PATCH] bcc_core.py: fix non-breaking-space byte lost in transcription --- bcc_core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bcc_core.py b/bcc_core.py index 651b806..fb2410d 100644 --- a/bcc_core.py +++ b/bcc_core.py @@ -528,7 +528,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: