chore: auto-update cli docs from upstream#597
Conversation
🔍 PR Change AnalysisThis PR is a trivial docs-only change — it removes two markdown code fence ( No component interactions or architectural flows are affected, so a sequence diagram is not applicable here. Note Posted by PR Sequence Diagram · Tag @mendral-app with feedback. |
| bl drive mount --sandbox <s> ... Mount a drive to a running sandbox | ||
| bl drive unmount --sandbox <s> ... Unmount a drive from a running sandbox | ||
| bl drive mounts --sandbox <s> List drives mounted in a running sandbox |
There was a problem hiding this comment.
🔴 Removing code fences causes <name> and <s> to be parsed as HTML tags, breaking rendered output
The code fences (```) surrounding the Synopsis content were removed, but the content contains angle-bracket placeholders like <name> (line 15) and `` (lines 20-22). Without code fences, Markdown parsers will interpret these as HTML tags. In particular, `` is a valid HTML strikethrough tag, so everything following the first `` on line 20 will be rendered with strikethrough formatting. `` is a non-standard HTML tag that most renderers will silently consume, making the placeholder invisible. Additionally, the whitespace-based column alignment between command and description will collapse since Markdown doesn't preserve multiple spaces outside code blocks.
(Refers to lines 13-22)
Was this helpful? React with 👍 or 👎 to provide feedback.
There was a problem hiding this comment.
Devin seems to be correct, the deployment is failing. Also this should be corrected upstream, since docs receives and parses these generated pages from upstream. Could we fix the source command help text @cploujoux ?
There was a problem hiding this comment.
Investigating further, noting this is related to an AI-generated PR that was auto-merged #596. Should we revert that?
b42706e to
1e163bd
Compare
🧪 Testing GuideWhat this PR addressesRemoves stray markdown code fence markers ( Steps to reproduce the original issue
What to verify (expected behavior)
This is an automated docs update with a minor formatting fix. No functional CLI behavior changes — only documentation rendering is affected. Note Posted by PR Testing Guide · Tag @mendral-app with feedback. |
1e163bd to
3ece9a8
Compare
|
Noting here that this is still broken even after the fix commit. Preview page returns an error due to the code fencing issue in upstream generated doc. Preview https://blaxel-auto-update-docs-cli.mintlify.app/cli-reference/commands/bl_drive |
3ece9a8 to
ec82e33
Compare
Automated update of CLI docs