Add feedmark component: RSS/Atom/JSON Feed parser#17
Draft
Copilot wants to merge 2 commits into
Draft
Conversation
Agent-Logs-Url: https://github.com/yoshuawuyts/components/sessions/4ab76061-f41e-40ba-bd78-cc7c1a388186 Co-authored-by: yoshuawuyts <2467194+yoshuawuyts@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Add feed parser for RSS, Atom, and JSON formats
Add May 1, 2026
feedmark component: RSS/Atom/JSON Feed parser
yoshuawuyts
approved these changes
May 1, 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.
New Wasm component that parses RSS, Atom and JSON Feed input (auto-detected) into a normalized
feedrecord, or renders it as a Markdown digest. Pure parsing, no network.WIT
Two exports on a
feed/entryrecord pair:entrycarriestitle,link,summary,content,published(RFC 3339),author— all normalized across the three source formats.Implementation
components/feedmark/scaffolded afterwordmark/tablemark(cdylib,wit-bindgen0.36, workspace lints).feed-rs2.3, which wraps the candidate crates suggested in the issue and handles format auto-detection.date — by authorline, and the summary (falling back to content).Integration
justfile: addedfeedmarktobuild,publish,versions..github/workflows/publish.yml: addedfeedmarkto the dispatchtargetchoices, the jobif:gate, and the description case.README.md: new row in the components table.