Closed
docs: confirm day.md anchor links are correct (false positive from link checker)#1947
Conversation
Copilot
AI
changed the title
[WIP] Fix broken links in workshop day.md
docs: confirm day.md anchor links are correct (false positive from link checker)
Jul 24, 2026
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 link checker filed a broken-link report for two anchors in
workshop/day.mdpointing toworkshop/README.md. Investigation shows these were false positives — the links were never broken.Analysis
The flagged links use double-hyphen anchors:
README.md#curriculum--part-1-build-your-first-workflowREADME.md#curriculum--part-2-go-deeperBoth GitHub.com's heading renderer and
github-slugger(used by the workshop SPA) produce--for the pattern—(em dash surrounded by spaces): the em dash is stripped as punctuation, leaving two consecutive spaces that are each independently converted to-. The link checker's slug generation incorrectly collapsed those to a single-, producing a non-matching expected anchor.The target headings in
README.md(## Curriculum — Part 1: Build Your First Workflow,## Curriculum — Part 2: Go Deeper) have been present since beforeday.mdwas added, and the anchors resolve correctly in both GitHub rendering and the built SPA.No content changes were required.