Conversation
Wrap every label <span> in archives/**/*.md with
<a style="text-decoration:none;" href="../../labels/{sanitized-labelname}/index.html">
using the same SanitizeLabelForPath logic as Program.cs.
Also removes the now-redundant cursor:default from each span style.
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates the generated PR digest output so that label badges become clickable links to the corresponding per-label index pages, and backfills that change across existing archives/**/*.md files. It also removes the now-redundant cursor:default styling from the label badge <span>.
Changes:
- Updated
Program.csto generate label badges as<a>links to../../labels/{sanitized-label}/index.htmlusingHtmlGenerator.SanitizeLabelForPath. - Backfilled the same anchor-wrapped label badges across historical archive markdown files.
- Removed
cursor:defaultfrom label badge styling (since labels are now links).
Reviewed changes
Copilot reviewed 49 out of 171 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
| src/PRDigest.NET/Program.cs | Generates linked label badges for newly created daily digests. |
| archives/2026/06/07.md | Backfilled label badges to link to label pages. |
| archives/2026/05/31.md | Backfilled label badges to link to label pages. |
| archives/2026/05/30.md | Backfilled label badges to link to label pages. |
| archives/2026/05/24.md | Backfilled label badges to link to label pages. |
| archives/2026/05/23.md | Backfilled label badges to link to label pages. |
| archives/2026/05/17.md | Backfilled label badges to link to label pages. |
| archives/2026/05/16.md | Backfilled label badges to link to label pages. |
| archives/2026/05/10.md | Backfilled label badges to link to label pages. |
| archives/2026/05/03.md | Backfilled label badges to link to label pages. |
| archives/2026/05/02.md | Backfilled label badges to link to label pages. |
| archives/2026/04/26.md | Backfilled label badges to link to label pages. |
| archives/2026/04/12.md | Backfilled label badges to link to label pages. |
| archives/2026/03/29.md | Backfilled label badges to link to label pages. |
| archives/2026/03/15.md | Backfilled label badges to link to label pages. |
| archives/2026/03/14.md | Backfilled label badges to link to label pages. |
| archives/2026/03/08.md | Backfilled label badges to link to label pages. |
| archives/2026/03/01.md | Backfilled label badges to link to label pages. |
| archives/2026/02/22.md | Backfilled label badges to link to label pages. |
| archives/2026/02/21.md | Backfilled label badges to link to label pages. |
| archives/2026/02/15.md | Backfilled label badges to link to label pages. |
| archives/2026/02/14.md | Backfilled label badges to link to label pages. |
| archives/2026/02/01.md | Backfilled label badges to link to label pages. |
| archives/2026/01/31.md | Backfilled label badges to link to label pages. |
| archives/2026/01/25.md | Backfilled label badges to link to label pages. |
| archives/2026/01/24.md | Backfilled label badges to link to label pages. |
| archives/2026/01/18.md | Backfilled label badges to link to label pages. |
| archives/2026/01/17.md | Backfilled label badges to link to label pages. |
| archives/2026/01/11.md | Backfilled label badges to link to label pages. |
| archives/2026/01/10.md | Backfilled label badges to link to label pages. |
| archives/2026/01/04.md | Backfilled label badges to link to label pages. |
| archives/2026/01/03.md | Backfilled label badges to link to label pages. |
| archives/2026/01/02.md | Backfilled label badges to link to label pages. |
| archives/2026/01/01.md | Backfilled label badges to link to label pages. |
| archives/2025/12/31.md | Backfilled label badges to link to label pages. |
| archives/2025/12/30.md | Backfilled label badges to link to label pages. |
| archives/2025/12/27.md | Backfilled label badges to link to label pages. |
| archives/2025/12/26.md | Backfilled label badges to link to label pages. |
| archives/2025/12/25.md | Backfilled label badges to link to label pages. |
| archives/2025/12/24.md | Backfilled label badges to link to label pages. |
| archives/2025/12/23.md | Backfilled label badges to link to label pages. |
| archives/2025/12/21.md | Backfilled label badges to link to label pages. |
💡 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.
Thie PR wraps every label in archives/**/*.md with
<a style="text-decoration:none;" href="../../labels/{sanitized-labelname}/index.html">using the sameSanitizeLabelForPathlogic asProgram.cs.Also removes the now-redundant
cursor:defaultfrom each span style.