Repair pandas.md footnote definition corrupted by the typography pass#4
Merged
Conversation
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 <noreply@anthropic.com>
There was a problem hiding this comment.
Pull request overview
Repairs a MyST/CommonMark footnote definition in the French pandas lecture so the [^mung] reference renders correctly again (the typography pass had inserted a non‑breaking space before the colon, breaking footnote parsing).
Changes:
- Fix the
[^mung]:footnote definition syntax by removing the space between]and:inlectures/pandas.md.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The seed's French typography pass inserted a non-breaking space between the
[^mung]footnote label and its colon inlectures/pandas.md(line 815). CommonMark/MyST require the colon immediately after], so the line stopped parsing as a footnote definition — it rendered as literal paragraph text and the[^mung]reference at line 71 broke.This is the output of the standard repair run (
scripts/typography/apply.mjs --lang fr) using the fixed transform from QuantEcon/action-translation#83, which masks definition labels and repairs this exact corruption. The script's safety net verified the change is spacing-only, idempotent, and that the other 25 lectures are already correct — this single byte is the only change.🤖 Generated with Claude Code