Summary
The code renderer shows a copy button only when the fence carries the c flag. Some pages do not set this flag. Their code blocks have no copy button.
Details
components/docskit/code-group.tsx:34-46 maps the c flag to copyButton.
components/docskit/code.tsx:80 and components/docskit/code.tsx:102 render the copy button only when options.copyButton is true.
content/docs/cookbook/playwright.mdx has 10 code fences. None has flags.
content/docs/overview/skills/available-skills/steel-browser.mdx has 2 code fences. Neither has flags.
- Sibling pages set the flag. Examples:
content/docs/overview/self-hosting/docker.mdx (18 fences with -wc or -wcn) and content/docs/overview/stealth/captcha-solving.mdx (19 fences with -wcn).
Impact
Users click code text to copy it. With no copy button, the click gives no response. Microsoft Clarity shows dead-click sessions on 17% of cookbook/playwright sessions and 22% of steel-browser skill page sessions (2026-09-15 to 2026-09-22).
Suggested fix
Make the copy button default-on in SingleCode and MultiCode, with a flag to remove it. Alternatively, add the -c flag to each fence on the affected pages.
Summary
The code renderer shows a copy button only when the fence carries the
cflag. Some pages do not set this flag. Their code blocks have no copy button.Details
components/docskit/code-group.tsx:34-46maps thecflag tocopyButton.components/docskit/code.tsx:80andcomponents/docskit/code.tsx:102render the copy button only whenoptions.copyButtonis true.content/docs/cookbook/playwright.mdxhas 10 code fences. None has flags.content/docs/overview/skills/available-skills/steel-browser.mdxhas 2 code fences. Neither has flags.content/docs/overview/self-hosting/docker.mdx(18 fences with-wcor-wcn) andcontent/docs/overview/stealth/captcha-solving.mdx(19 fences with-wcn).Impact
Users click code text to copy it. With no copy button, the click gives no response. Microsoft Clarity shows dead-click sessions on 17% of cookbook/playwright sessions and 22% of steel-browser skill page sessions (2026-09-15 to 2026-09-22).
Suggested fix
Make the copy button default-on in
SingleCodeandMultiCode, with a flag to remove it. Alternatively, add the-cflag to each fence on the affected pages.