Chinese quote converter
🔬 A curated collection of 23,000+ agent skills for empirical research across 8 social science disciplines. | 精选 23,000+ AI Agent 技能库,覆盖8大社会科学学科的实证研究。CoPaper.AI 20分钟完成一篇可复现的规范实证论文,并支持用户上传 Skills。-- Maintained by CoPaper.AI from Stanford REAP.
npx -y skills add brycewang-stanford/Auto-Empirical-Research-Skills --skill chinese-quote-converterAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
What its author says it does
Copied from the file, not written here
Convert English straight quotation marks ("...") to Chinese curved quotation marks ("..." U+201C/D). Use when processing Chinese text documents, markdown files, or any content that needs proper Chinese typography with directional quotes. Triggers on keywords like "转换引号", "中文引号", "英文引号转中文", "quote conversion", "convert quotes".
SKILL.md
1.1 KB, as published. Nobody here has run it
Chinese Quote Converter
Convert English straight quotes to Chinese curved quotes:
"..."→"..."(U+201C / U+201D)'...'→'...'(U+2018 / U+2019)
Usage
Run the conversion script:
# Preview conversion (output to stdout)
python3 scripts/convert_quotes.py <input_file>
# Save to new file
python3 scripts/convert_quotes.py <input_file> -o <output_file>
# Modify file in-place
python3 scripts/convert_quotes.py <input_file> --in-place
Features
- Preserves code blocks (```, `, $$) by default
- Handles nested quotes correctly
- Detects English apostrophes (don't, it's) and leaves them unchanged
- Use
--no-preserve-codeto also convert quotes inside code blocks