Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Adds RSS feed generation (feed.xml) for recently generated PR digest pages, reusing the existing Markdown parsing/analyzer pipeline so each merged PR can be emitted as an RSS <item>.
Changes:
- Add
RssFeedGeneratorto produce RSS XML items from recent archive markdown files. - Refactor/replace the markdown analyzer into
PullRequestAnalyzerand centralize Markdig pipeline configuration inMarkdownOptions. - Wire RSS generation into the CLI run and expose the feed via HTML
<link rel="alternate">+ navbar icon; add third‑party icon notices to README.
Reviewed changes
Copilot reviewed 7 out of 7 changed files in this pull request and generated 3 comments.
Show a summary per file
| File | Description |
|---|---|
| src/PRDigest.NET/RssFeedGenerator.cs | New RSS feed XML generator that parses recent markdown digests and emits RSS <item> entries. |
| src/PRDigest.NET/PullReqeustAnalyzer.cs | New analyzer implementation returning structured metadata + summaries used by HTML/RSS views. |
| src/PRDigest.NET/PullReqeustAnalayzer.cs | Removes the prior analyzer implementation (typo’d name) in favor of the new analyzer. |
| src/PRDigest.NET/Program.cs | Invokes RSS generation and fixes HtmlGenerator naming usage; switches to Enumerate* APIs in HTML generation. |
| src/PRDigest.NET/MarkdownOptions.cs | Centralizes Markdig pipeline configuration for consistent parsing/rendering. |
| src/PRDigest.NET/HtmlGenerator.cs | Uses the centralized pipeline + new analyzer; adds RSS discoverability link and navbar icon. |
| README.md | Adds third‑party icon license attributions. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
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.
#5
This PR add RSS feed (feed.xml) generator.