Skip to content

Commit 60cc5d1

Browse files
committed
added right-single-quote (curly apostrophe) before decade
1 parent 46fdf45 commit 60cc5d1

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

scripts/cleanup.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ var replacements = [
2020
{ searchFor: /'s\b/g, replaceWith: "’s"}, // it's
2121
{ searchFor: /'t\b/g, replaceWith: "’t"}, // don't
2222
{ searchFor: /'ve\b/g, replaceWith: "’ve"}, // I've
23+
{ searchFor: /(\s)'(\d\ds)/g, replaceWith: "$1’$2"}, // ’90s
2324
{ searchFor: /O'R/g, replaceWith: "O’R"}, // O'Reilly
2425
{ searchFor: /",/g, replaceWith: ',”'}, // comma outside quote mark
2526
{ searchFor: /"\./g, replaceWith: '.”'}, // period outside quote mark (transpose only)

0 commit comments

Comments
 (0)