Skip to content

Commit

Permalink
调整 - 更新规则
Browse files Browse the repository at this point in the history
  • Loading branch information
neavo committed Dec 6, 2024
1 parent 43fafed commit 55c5df2
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Plugin_Scripts/PunctuationFixer/PunctuationFixer.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ class PunctuationFixer(PluginBase):
("\u002d", "\u2014", "\u2015"), # 破折号之间的转换,\u002d = - ,\u2014 = ― ,\u2015 = —
("\u2014", "\u002d", "\u2015"), # 破折号之间的转换,\u002d = - ,\u2014 = ― ,\u2015 = —
("\u2015", "\u002d", "\u2014"), # 破折号之间的转换,\u002d = - ,\u2014 = ― ,\u2015 = —
("<", "<", "《"),
(">", ">", "》"),
("<", "<", "《"),
(">", ">", "》"),
("「", "‘", "“", "『"),
("」", "’", "”", "』"),
("『", "‘", "“", "「"),
Expand Down

0 comments on commit 55c5df2

Please sign in to comment.