mirror of
https://github.com/luongnv89/claude-howto.git
synced 2026-05-09 22:07:32 +02:00
fix(markdown): escape pipe chars in translation and en tables (#115)
Escape unescaped pipe characters in markdown table cells across zh/01-slash-commands, 10-cli, ja/10-cli, and vi/10-cli. Unescaped pipes inside table cells are interpreted as column delimiters, breaking table rendering.
This commit is contained in:
+1
-1
@@ -826,7 +826,7 @@ claude -p --output-format json "query"
|
||||
|
||||
| Use Case | Command |
|
||||
|----------|---------|
|
||||
| Quick code review | `cat file | claude -p "review"` |
|
||||
| Quick code review | `cat file \| claude -p "review"` |
|
||||
| Structured output | `claude -p --output-format json "query"` |
|
||||
| Safe exploration | `claude --permission-mode plan` |
|
||||
| Autonomous with safety | `claude --enable-auto-mode --permission-mode auto` |
|
||||
|
||||
+1
-1
@@ -795,7 +795,7 @@ claude -p --output-format json "query"
|
||||
|
||||
| ユースケース | コマンド |
|
||||
|-------------|----------|
|
||||
| 簡易コードレビュー | `cat file | claude -p "review"` |
|
||||
| 簡易コードレビュー | `cat file \| claude -p "review"` |
|
||||
| 構造化出力 | `claude -p --output-format json "query"` |
|
||||
| 安全な探索 | `claude --permission-mode plan` |
|
||||
| 安全装置付き自律実行 | `claude --enable-auto-mode --permission-mode auto` |
|
||||
|
||||
+1
-1
@@ -756,7 +756,7 @@ claude -p --output-format json "query"
|
||||
|
||||
| Trường Hợp Sử Dụng | Lệnh |
|
||||
|----------|---------|
|
||||
| Quick code review | `cat file | claude -p "review"` |
|
||||
| Quick code review | `cat file \| claude -p "review"` |
|
||||
| Structured output | `claude -p --output-format json "query"` |
|
||||
| Safe exploration | `claude --permission-mode plan` |
|
||||
| Autonomous with safety | `claude --enable-auto-mode --permission-mode auto` |
|
||||
|
||||
@@ -28,7 +28,7 @@ Claude Code 目前提供 55+ 个内置命令和 5 个内置 Skills。你可以
|
||||
| `/btw <question>` | 额外问题,不写入历史 |
|
||||
| `/chrome` | 配置 Chrome 浏览器集成 |
|
||||
| `/clear` | 清空对话(别名:`/reset`、`/new`) |
|
||||
| `/color [color|default]` | 设置提示栏颜色 |
|
||||
| `/color [color\|default]` | 设置提示栏颜色 |
|
||||
| `/compact [instructions]` | 压缩对话,可附带聚焦指令 |
|
||||
| `/config` | 打开设置(别名:`/settings`) |
|
||||
| `/context` | 用彩色网格可视化上下文占用 |
|
||||
@@ -37,11 +37,11 @@ Claude Code 目前提供 55+ 个内置命令和 5 个内置 Skills。你可以
|
||||
| `/desktop` | 继续在桌面应用中处理(别名:`/app`) |
|
||||
| `/diff` | 查看未提交更改的交互式 diff |
|
||||
| `/doctor` | 检查安装健康状态 |
|
||||
| `/effort [low|medium|high|max|auto]` | 设置推理强度;`max` 需要 Opus 4.6 |
|
||||
| `/effort [low\|medium\|high\|max\|auto]` | 设置推理强度;`max` 需要 Opus 4.6 |
|
||||
| `/exit` | 退出 REPL(别名:`/quit`) |
|
||||
| `/export [filename]` | 将当前对话导出为文件或剪贴板内容 |
|
||||
| `/extra-usage` | 配置额外用量以应对速率限制 |
|
||||
| `/fast [on|off]` | 切换快速模式 |
|
||||
| `/fast [on\|off]` | 切换快速模式 |
|
||||
| `/feedback` | 提交反馈(别名:`/bug`) |
|
||||
| `/help` | 显示帮助 |
|
||||
| `/hooks` | 查看 hook 配置 |
|
||||
|
||||
Reference in New Issue
Block a user