opencode-ascii 0.1.6 → 0.1.7
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/dist/substitutions.js +2 -1
- package/package.json +1 -1
package/dist/substitutions.js
CHANGED
|
@@ -25,7 +25,8 @@ export const PUNCTUATION = [
|
|
|
25
25
|
["\u2039", "'"], // single left-pointing angle quotation mark (‹)
|
|
26
26
|
["\u203A", "'"], // single right-pointing angle quotation mark (›)
|
|
27
27
|
// Miscellaneous punctuation
|
|
28
|
-
["\
|
|
28
|
+
["\u2500", "-"], // box drawings light horizontal (─)
|
|
29
|
+
["\u2022", "-"], // bullet (-)
|
|
29
30
|
["\u2023", ">"], // triangular bullet (‣)
|
|
30
31
|
["\u2043", "-"], // hyphen bullet (⁃)
|
|
31
32
|
["\u00B7", "."], // middle dot (·)
|
package/package.json
CHANGED