Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Format plain text or markdown files with proper structure (frontmatter, headings, bold, lists, code blocks) without changing content.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
scripts/quotes.ts
1export function replaceQuotes(content: string): string {2return content3.replace(/"([^"]+)"/g, "\u201c$1\u201d")4.replace(/「([^」]+)」/g, "\u201c$1\u201d");5}6