feat(baoyu-format-markdown): add markdown formatter skill

Formats plain text or markdown with frontmatter, titles, summaries,
headings, bold, lists, code blocks, and CJK typography fixes.
This commit is contained in:
Jim Liu 宝玉
2026-01-28 21:37:23 -06:00
parent 21a5167b61
commit 40363194be
7 changed files with 845 additions and 0 deletions
@@ -0,0 +1,5 @@
export function replaceQuotes(content: string): string {
return content
.replace(/"([^"]+)"/g, "\u201c$1\u201d")
.replace(/「([^」]+)」/g, "\u201c$1\u201d");
}