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 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 | " | `"` |
@@ -4,10 +4,10 @@
4
4
  */
5
5
  export const PUNCTUATION = [
6
6
  // Dashes
7
- ["\u2014", "--"], // em dash (—)
7
+ ["\u2014", "-"], // em dash (—)
8
8
  ["\u2013", "-"], // en dash (–)
9
9
  ["\u2012", "-"], // figure dash (‒)
10
- ["\u2015", "--"], // horizontal bar (―)
10
+ ["\u2015", "-"], // horizontal bar (―)
11
11
  // Ellipsis
12
12
  ["\u2026", "..."], // horizontal ellipsis (…)
13
13
  // Curly / smart quotes — double
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-ascii",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "description": "OpenCode plugin that substitutes unicode characters with ASCII equivalents in AI responses and file edits",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",