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:
qszhu
2026-05-09 15:25:42 +08:00
committed by GitHub
parent d4b5cf56b4
commit 59475f4ec5
4 changed files with 6 additions and 6 deletions

View File

@@ -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` |