fix: escape pipes inside inline code in markdown tables#31
Conversation
Three table cells in writing-agent-relay-workflows/SKILL.md had unescaped `|` characters inside backticked inline code (`bash | bash | bash`, `cmd1 | cmd2`). GitHub-flavored Markdown still parses pipes as column delimiters even inside backticks, which broke the column counts on those rows. Escape them as `\|`. Flagged by CodeRabbit and Devin Review on AgentWorkforce/relay#829. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
|
Caution Review failedThe pull request is closed. ℹ️ Recent review info⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Plus Run ID: 📒 Files selected for processing (1)
📝 WalkthroughWalkthroughThree inline code examples in the skills documentation now escape pipe characters with backslashes ( ChangesMarkdown Escaping Corrections
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~2 minutes Poem
✨ Finishing Touches🧪 Generate unit tests (beta)
Comment |
Summary
Three table cells in
skills/writing-agent-relay-workflows/SKILL.mdhad unescaped|characters inside backticked inline code (`bash | bash | bash`,`cmd1 | cmd2`).GitHub-flavored Markdown parses
|as a column delimiter even inside backticks, so those rows rendered with too many columns and the tables broke.Fixed by escaping the pipes as
\|:Flagged by CodeRabbit and Devin Review on AgentWorkforce/relay#829.
Test plan
🤖 Generated with Claude Code