fix-table-pipe

Fix Markdown table rendering in Callouts and LaTeX pipe conflicts.

18|2|Updated Feb 12, 2026
One-click install
npx skills add https://github.com/Treasoni/kaoyan_skills --skill fix-table-pipe
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: fix-table-pipe
Source: https://github.com/Treasoni/kaoyan_skills/tree/main/fix-table-pipe
Command: npx skills add https://github.com/Treasoni/kaoyan_skills --skill fix-table-pipe

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

本技能旨在解决 Markdown 表格在 Callout 块内渲染错误以及在涉及 LaTeX 数学表达中的管道符冲突的问题。通过提供清晰的修复策略和工作流程,帮助用户确保表格正确显示并避免格式问题。

Core Features & Use Cases

  • Callout 表格修复:确保 Callout 块内表格前有正确的空行,从而正确渲染。
  • LaTeX 管道符冲突修复:将 $|...|$ 中的管道符转换为安全的跨行表达形式,避免与表格分隔符冲突。
  • 工作流示例:在学术笔记中遇到 Callout 内的复杂表格时,自动应用修复规则并给出修复前后对比。

Quick Start

将需要修复的 Markdown 文件提交给此技能以自动修复 Callout 表格空行问题并修正管道符冲突。

Frequently Asked Questions about fix-table-pipe

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I fix Markdown table rendering issues in Callout blocks?

Markdown tables fail to render in Callout blocks because the parser needs structural separation. Inserting an empty line before the table syntax within the Callout block restores correct rendering.

Why do LaTeX pipe symbols break Markdown tables?

LaTeX pipe symbols in $|...|$ conflict with Markdown table separators because the parser misinterprets them as column delimiters. Converting them to \vert ... \vert resolves the rendering conflict.

How to convert LaTeX absolute value pipes for Markdown tables?

To convert LaTeX absolute value pipes for Markdown tables, replace $|...|$ syntax with \vert ... \vert expressions. This avoids alignment syntax conflicts and ensures both tables and math render correctly.

Does fixing Callout table formatting alter the Markdown alignment syntax?

Fixing Callout table formatting does not alter Markdown alignment syntax. The deterministic repair rules insert empty lines and convert LaTeX pipes while preserving your original column alignment syntax.

What is the best way to repair Markdown notes with LaTeX and tables?

The best way to repair Markdown notes with LaTeX and tables is to apply deterministic formatting rules. Insert empty lines in Callouts before tables and convert pipe symbols to safe LaTeX expressions for proper rendering.