[docs-agent] Fix broken Token gas payment modes anchor on Pay gas with any token#1380
Merged
Merged
Conversation
…h any token The "How it works" section linked to #token-gas-payment-modes, but the content lived inside an <Accordion title="Token gas payment modes"> block. Fern Accordion titles do not generate heading anchors, so the link did not resolve. Convert the Accordion into a ### Token gas payment modes heading so Fern auto-generates the matching #token-gas-payment-modes anchor. The content is now visible by default, matching the "section below for details" framing in the prose. Refs DOCS-115 Requested-by: @seansing
🔗 Preview Mode
|
Per reviewer feedback (Jake Hobbs), reorder the Advanced section so the Token gas payment modes heading is the first item, instead of being wedged between Accordions. This keeps the conceptual mode explanation up-front while leaving the implementation-detail Accordions below. Refs DOCS-115 Requested-by: @seansing
jakehobbs
approved these changes
Jun 11, 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.
Summary
On the Pay gas with any token page, the "How it works" section ends with:
Clicking that link did nothing because there was no heading with the anchor
#token-gas-payment-modeson the page. The "Token gas payment modes" content lived inside<Accordion title="Token gas payment modes">in the "Advanced" section, and Fern's Accordion titles do not generate heading anchors.This PR converts the
<Accordion title="Token gas payment modes">block into a### Token gas payment modesheading. Fern auto-generates the kebab-case#token-gas-payment-modesanchor from the H3, which matches the existing link target. The content is now visible by default, matching the "section below for details" framing in the prose.No other content changes. Surrounding Accordions in the "Advanced" section are untouched.
Linear
DOCS-115
Requested by
@seansing (via Slack thread)