From 258e46e954cf7e095835cc8e88be0f98a053bd49 Mon Sep 17 00:00:00 2001 From: Bryan Helmkamp Date: Wed, 6 May 2026 07:38:32 -0400 Subject: [PATCH] fix(cli): wrap angle-bracket placeholders in backticks in help text Bare `` and `:` in clap help text generate doc table cells where MDX parses the placeholders as JSX tags and fails the Mintlify build. Wrap them in backticks so the generated table cells route them through inline code spans where MDX leaves them alone. Co-Authored-By: Claude Opus 4.7 (1M context) --- lib/crates/fabro-cli/src/args.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/crates/fabro-cli/src/args.rs b/lib/crates/fabro-cli/src/args.rs index 8ef5a7cc6..474cdb398 100644 --- a/lib/crates/fabro-cli/src/args.rs +++ b/lib/crates/fabro-cli/src/args.rs @@ -497,9 +497,9 @@ pub(crate) struct CpArgs { #[command(flatten)] pub(crate) server: ServerTargetArgs, - /// Source: : or local path + /// Source: `:` or local path pub(crate) src: String, - /// Destination: : or local path + /// Destination: `:` or local path pub(crate) dst: String, /// Recurse into directories #[arg(short, long)] @@ -1462,7 +1462,7 @@ pub(crate) struct InstallGithubArgs { #[arg(long)] pub(crate) strategy: Option, - /// GitHub App owner: 'personal' or 'org:' (app only, requires + /// GitHub App owner: `personal` or `org:` (app only, requires /// --non-interactive) #[arg(long)] pub(crate) owner: Option,