opencode-ascii 0.1.4 → 0.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/substitutions.js +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -53,7 +53,7 @@ All four substitution categories are **enabled by default**. Disable any categor
|
|
|
53
53
|
|
|
54
54
|
| Unicode | Character | ASCII |
|
|
55
55
|
|---------|-----------|-------|
|
|
56
|
-
| U+2014 | — |
|
|
56
|
+
| U+2014 | — | `-` |
|
|
57
57
|
| U+2013 | – | `-` |
|
|
58
58
|
| U+2026 | … | `...` |
|
|
59
59
|
| U+201C | " | `"` |
|
package/dist/substitutions.js
CHANGED
|
@@ -4,10 +4,10 @@
|
|
|
4
4
|
*/
|
|
5
5
|
export const PUNCTUATION = [
|
|
6
6
|
// Dashes
|
|
7
|
-
["\u2014", "
|
|
7
|
+
["\u2014", "-"], // em dash (—)
|
|
8
8
|
["\u2013", "-"], // en dash (–)
|
|
9
9
|
["\u2012", "-"], // figure dash (‒)
|
|
10
|
-
["\u2015", "
|
|
10
|
+
["\u2015", "-"], // horizontal bar (―)
|
|
11
11
|
// Ellipsis
|
|
12
12
|
["\u2026", "..."], // horizontal ellipsis (…)
|
|
13
13
|
// Curly / smart quotes — double
|
package/package.json
CHANGED