mirror of
https://github.com/JimLiu/baoyu-skills.git
synced 2026-08-07 09:23:04 +08:00
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:
@@ -0,0 +1,5 @@
|
||||
export function replaceQuotes(content: string): string {
|
||||
return content
|
||||
.replace(/"([^"]+)"/g, "\u201c$1\u201d")
|
||||
.replace(/「([^」]+)」/g, "\u201c$1\u201d");
|
||||
}
|
||||
Reference in New Issue
Block a user