docs: replace single-tab code block title with bolded label on BYOLLM page#44
Merged
Merged
Conversation
The Step 2 IAM policy code block on the Bring your own LLM page used a title= attribute, which Astro Starlight renders as a single tab on top of the code block. The style guide reserves title= for actual filenames (e.g., title="config.yaml"), so this off-pattern usage looked like a vestigial tab strip. Drop the title attribute and add a bolded label line above the fence instead. Repo-wide audit confirmed this was the only occurrence. Co-Authored-By: Oz <oz-agent@warp.dev>
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
advait-m
approved these changes
May 9, 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
The Step 2 IAM policy code block on the Bring your own LLM page used a
title="Example: AWS Bedrock minimum IAM policy"attribute, which Astro Starlight's Expressive Code renders as a single tab on top of the block. That looked like a vestigial tab strip rather than a label.The style guide in
AGENTS.mdreserves thetitle=fence attribute for actual filenames (e.g.,```yaml title="config.yaml"), so using it for free-form descriptive text was off-pattern. A repo-wide grep for^```[a-z]* title=confirmed this was the only occurrence insrc/content/.Changes
src/content/docs/enterprise/enterprise-features/bring-your-own-llm.mdxtitle=attribute from the JSON IAM-policy fence in the Step 2: Provision IAM roles (cloud admin) section.**Example: AWS Bedrock minimum IAM policy**bolded label line directly above the fence instead.Validation
npm run buildsucceeds for the route that includes this page (/_llms-txt/enterprise.txt).RangeErroron/_llms-txt/support.txtreproduces on cleanmain; it is unrelated to this change.Artifacts
Co-Authored-By: Oz oz-agent@warp.dev