mirror of
https://github.com/JimLiu/baoyu-skills.git
synced 2026-07-12 22:09:48 +08:00
40363194be
Formats plain text or markdown with frontmatter, titles, summaries, headings, bold, lists, code blocks, and CJK typography fixes.
6 lines
173 B
TypeScript
6 lines
173 B
TypeScript
export function replaceQuotes(content: string): string {
|
|
return content
|
|
.replace(/"([^"]+)"/g, "\u201c$1\u201d")
|
|
.replace(/「([^」]+)」/g, "\u201c$1\u201d");
|
|
}
|