From 4b80f18c5411ac531db9f4fd10f4225efa141210 Mon Sep 17 00:00:00 2001 From: Matt McKay Date: Wed, 15 Jul 2026 15:51:33 +1000 Subject: [PATCH] fix: repair footnote definition corrupted by the typography pass MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The French NBSP pass in the seed inserted a non-breaking space between the [^mung] footnote label and its colon in pandas.md, which stops the line parsing as a definition — it rendered as literal paragraph text and the footnote reference broke. Ports the fix from QuantEcon/action-translation#83: the transform now masks definition labels and repairs this exact corruption, so this is the output of the standard repair run (scripts/typography/apply.mjs --lang fr), which verified the change is spacing-only and idempotent across all 26 lectures. Co-Authored-By: Claude Fable 5 --- lectures/pandas.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lectures/pandas.md b/lectures/pandas.md index d9e35c6..fa6ee67 100644 --- a/lectures/pandas.md +++ b/lectures/pandas.md @@ -812,4 +812,4 @@ plt.tight_layout() ```{solution-end} ``` -[^mung] : Wikipédia définit le « munging » comme le nettoyage de données d'une forme brute vers une forme structurée et épurée. \ No newline at end of file +[^mung]: Wikipédia définit le « munging » comme le nettoyage de données d'une forme brute vers une forme structurée et épurée. \ No newline at end of file