claude-code - 💡(How to fix) Fix [BUG] RSS feed content:encoded links missing /docs prefix, redirect away from the article [1 participants]

Official PRs (…)
ON THIS PAGE

Recommended Tools

×6

Utilities matched from this issue’s tags and category — try them while you read without losing context.

GitHub issue graph ai analysis

Paste a GitHub issue URL. We fetch that issue, discover linked issues from bodies/comments/timeline, collect linked pull requests, and produce a structured English report.

The report is written in English Markdown for sharing and archival.

Helpful · Quick feedback

Loading…
GitHub stats
anthropics/claude-code#49513Fetched 2026-04-17 08:38:59
View on GitHub
Comments
0
Participants
1
Timeline
2
Reactions
0
Participants
Timeline (top)
labeled ×2

The "What's new" RSS feed at https://code.claude.com/docs/en/whats-new/rss.xml embeds relative links inside each item's <content:encoded> body. RSS readers resolve those against the origin (https://code.claude.com), which strips the /docs prefix and redirects readers away from the actual digest to the Claude Code marketing page.

Error Message

Error Messages/Logs

Root Cause

The "What's new" RSS feed at https://code.claude.com/docs/en/whats-new/rss.xml embeds relative links inside each item's <content:encoded> body. RSS readers resolve those against the origin (https://code.claude.com), which strips the /docs prefix and redirects readers away from the actual digest to the Claude Code marketing page.

Code Example

n/a

---

<a href="/en/whats-new/2026-w15">Read the Week 15 digest →</a>
RAW_BUFFERClick to expand / collapse

Preflight Checklist

  • I have searched existing issues and this hasn't been reported yet
  • This is a single bug report (please file separate reports for different bugs)
  • I am using the latest version of Claude Code

What's Wrong?

RSS feed content:encoded links missing /docs prefix, redirect away from the article

Labels: bug, docs

Summary

The "What's new" RSS feed at https://code.claude.com/docs/en/whats-new/rss.xml embeds relative links inside each item's <content:encoded> body. RSS readers resolve those against the origin (https://code.claude.com), which strips the /docs prefix and redirects readers away from the actual digest to the Claude Code marketing page.

Feed URL

https://code.claude.com/docs/en/whats-new/rss.xml

What Should Happen?

Expected

Anchors inside <content:encoded> should be absolute URLs (or at least prefixed with the docs basePath) so they resolve correctly when the HTML is rendered outside the /docs routing context.

Actual

The generator (Mintlify) emits docs-relative paths without the /docs prefix. They work on-page but break in the RSS feed.

Error Messages/Logs

n/a

Steps to Reproduce

Steps to reproduce

  1. Subscribe to the feed in any RSS reader (NetNewsWire, Feedly, Reeder, etc.).
  2. Open the most recent item ("Week 15").
  3. Click the "Read the Week 15 digest →" link in the body.
  4. Observe the redirect to https://www.claude.com/product/claude-code instead of the digest.

Example

Inside <content:encoded> for the Week 15 item:

<a href="/en/whats-new/2026-w15">Read the Week 15 digest →</a>
  • Reader resolves to: https://code.claude.com/en/whats-new/2026-w15302 → https://www.claude.com/product/claude-code
  • Correct URL: https://code.claude.com/docs/en/whats-new/2026-w15200 OK

Every weekly item in the feed (Week 13, Week 14, Week 15, …) has the same pattern.

Note

The per-item <link> elements (e.g. https://code.claude.com/docs/en/whats-new#week-15) resolve correctly — this bug is only in the links inside the body content.

Claude Model

None

Is this a regression?

I don't know

Last Working Version

n/a

Claude Code Version

n/a

Platform

Other

Operating System

Other

Terminal/Shell

Other

Additional Information

Environment

  • Feed generator: Mintlify (per <generator> tag in the feed)
  • Verified: 2026-04-16
  • Affected items: all weekly digest entries

extent analysis

TL;DR

The RSS feed generator, Mintlify, should be configured to produce absolute URLs or URLs prefixed with the /docs path for links inside the <content:encoded> body.

Guidance

  • Verify that Mintlify supports generating absolute URLs or URLs with a custom base path.
  • Check the Mintlify documentation for configuration options related to URL generation.
  • Consider modifying the RSS feed generation process to prepend the /docs path to relative URLs inside <content:encoded>.
  • Test the modified RSS feed with an RSS reader to ensure the links resolve correctly.

Example

No code snippet is provided as the issue is related to the configuration of the Mintlify feed generator.

Notes

The solution may depend on the specific capabilities and configuration options of Mintlify. If Mintlify does not support generating absolute URLs or custom base paths, an alternative feed generator may be necessary.

Recommendation

Apply a workaround by modifying the RSS feed generation process to prepend the /docs path to relative URLs inside <content:encoded>, as this is a more feasible solution given the current information.

Vote matrix · Quick signals

Works
Did the solution work? Tap to confirm.
Easy Fix
Was it a quick fix?
Time Saver
Did it save you time?
Blocking
Was it severely blocking?
Common Issue
Are others likely hitting this too?
Flaky / Intermittent
Is it intermittent?
Verified / Reproducible
Can you reproduce it reliably?
Loading…

Still need to ship something?

×6

Another batch ranked right after the header list — different links, same matching logic.

Back to top recommendations

TRENDING