docs: typography hygiene + 1 in-body H1 removal across 6 pages

Replaced 84 typography characters (curly quotes, apostrophes, em/en
dashes, non-breaking hyphens) with ASCII equivalents per
docs/CLAUDE.md heading and content hygiene rules.

- docs/gateway/tools-invoke-http-api.md: 14 chars; removed the
  duplicate '# Tools Invoke (HTTP)' H1 (Mintlify renders title from
  frontmatter; the in-body H1 with parens produced a brittle anchor).
- docs/tools/browser-control.md: 14 chars
- docs/security/formal-verification.md: 14 chars
- docs/gateway/configuration-reference.md: 14 chars
- docs/concepts/agent.md: 14 chars
- docs/channels/qa-channel.md: 14 chars
This commit is contained in:
Vincent Koc
2026-05-05 20:25:31 -07:00
parent d71c11983f
commit ae9f779e5f
6 changed files with 68 additions and 70 deletions

View File

@@ -70,7 +70,7 @@ Other runtime failures may still return `{ "error": "<message>" }` without a
### Playwright requirement
Some features (navigate/act/AI snapshot/role snapshot, element screenshots,
PDF) require Playwright. If Playwright isnt installed, those endpoints return
PDF) require Playwright. If Playwright isn't installed, those endpoints return
a clear 501 error.
What still works without Playwright:
@@ -242,12 +242,12 @@ Snapshot flags at a glance:
## Snapshots and refs
OpenClaw supports two snapshot styles:
OpenClaw supports two "snapshot" styles:
- **AI snapshot (numeric refs)**: `openclaw browser snapshot` (default; `--format ai`)
- Output: a text snapshot that includes numeric refs.
- Actions: `openclaw browser click 12`, `openclaw browser type 23 "hello"`.
- Internally, the ref is resolved via Playwrights `aria-ref`.
- Internally, the ref is resolved via Playwright's `aria-ref`.
- **Role snapshot (role refs like `e12`)**: `openclaw browser snapshot --interactive` (or `--compact`, `--depth`, `--selector`, `--frame`)
- Output: a role-based list/tree with `[ref=e12]` (and optional `[nth=1]`).
@@ -304,7 +304,7 @@ openclaw browser wait "#main" \
## Debug workflows
When an action fails (e.g. not visible, strict mode violation, covered):
When an action fails (e.g. "not visible", "strict mode violation", "covered"):
1. `openclaw browser snapshot --interactive`
2. Use `click <ref>` / `type <ref>` (prefer role refs in interactive mode)
@@ -334,7 +334,7 @@ Role snapshots in JSON include `refs` plus a small `stats` block (lines/chars/re
## State and environment knobs
These are useful for make the site behave like X workflows:
These are useful for "make the site behave like X" workflows:
- Cookies: `cookies`, `cookies set`, `cookies clear`
- Storage: `storage local|session get|set|clear`
@@ -374,7 +374,7 @@ Strict-mode example (block private/internal destinations by default):
## Related
- [Browser](/tools/browser) overview, configuration, profiles, security
- [Browser login](/tools/browser-login) signing in to sites
- [Browser](/tools/browser) - overview, configuration, profiles, security
- [Browser login](/tools/browser-login) - signing in to sites
- [Browser Linux troubleshooting](/tools/browser-linux-troubleshooting)
- [Browser WSL2 troubleshooting](/tools/browser-wsl2-windows-remote-cdp-troubleshooting)