You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Replace HTML definition lists with Markdown syntax (#62)
* fix: prevent double-dash flags from being converted to em-dash in docs
SmartyPants (remark-smartypants) converts `--` to `—` (em dash) inside
`<code>` tags within the `<dl>` HTML block on the environment variables
page. Use JSX expressions (`{'--flag'}`) to bypass the transformation
and render flags like `--project`, `--repo`, `--client-id`, and
`--client-secret` correctly.
https://claude.ai/code/session_0163JhpTd1Sojez8yK7ARqnW
* fix: use remark-definition-list to avoid SmartyPants em-dash in docs
Replace the raw HTML `<dl>` block in environment-variables.mdx with
Markdown definition list syntax (`: ` prefix). Add remark-definition-list
plugin so Astro/Starlight renders them as `<dl>`/`<dt>`/`<dd>`.
This fixes `--project`, `--repo`, `--client-id`, `--client-secret`, and
`bee auth login --method oauth` being rendered with an em-dash (`—`)
instead of double dashes due to SmartyPants typography conversion
inside raw HTML blocks.
https://claude.ai/code/session_0163JhpTd1Sojez8yK7ARqnW
* refactor: replace raw HTML <dl> with Markdown definition list syntax
Convert all remaining <dl>/<dt>/<dd> HTML blocks in docs to Markdown
definition list syntax using the remark-definition-list plugin added
in the previous commit.
Files updated:
- integrations/ai-agent.mdx
- guides/authentication.mdx (inside <Card> components)
- recipes/release-notify-issues.mdx
- recipes/pr-lifecycle-sync.mdx
https://claude.ai/code/session_0163JhpTd1Sojez8yK7ARqnW
* docs: document Markdown definition list syntax in AGENTS.md
Add guidance to the Documentation site section about using Markdown
definition list syntax (term + `: description`) instead of raw
<dl>/<dt>/<dd> HTML, including a note that it works inside JSX
components like <Card>.
https://claude.ai/code/session_0163JhpTd1Sojez8yK7ARqnW
---------
Co-authored-by: Claude <noreply@anthropic.com>
0 commit comments