punctilio 1.2.6 → 1.2.8

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.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -53,7 +53,7 @@ My [`benchmark.mjs`](./benchmark.mjs) measures how well libraries handle a [wide
53
53
  | Ellipsis | ... → … | ✓ | ✓ | ✓ | ✗ | ✓ |
54
54
  | Multiplication | 5x5 → 5×5 | ✓ | ✗ | ✗ | ✗ | ~ |
55
55
  | Math symbols | != → ≠ | ✓ | ✗ | ~ | ✗ | ~ |
56
- | Legal symbols | (c) → © | ✓ | ✗ | © only | ✗ | ✓ |
56
+ | Legal symbols | (c) → © | ✓ | ✗ | ~ | ✗ | ✓ |
57
57
  | Arrows | -> → → | ✓ | ✗ | ~ | ✗ | ~ |
58
58
  | Prime marks | 5'10" → 5′10″ | ✓ | ✗ | ✓ | ✓ | ✗ |
59
59
  | Degrees | 20 C → 20 °C | ✓ | ✗ | ✗ | ✗ | ✓ |
@@ -64,7 +64,7 @@ My [`benchmark.mjs`](./benchmark.mjs) measures how well libraries handle a [wide
64
64
  | Non-English quotes | „Hallo” (German) | ✗ | ✗ | ✓ | ✗ | ~ |
65
65
  | Non-breaking spaces | Chapter 1 | ✗ | ✗ | ✗ | ✗ | ✓ |
66
66
 
67
- ~ = partial success (handles main example but misses edge cases)
67
+ _~ = partial success (handles main example but misses edge cases)_
68
68
 
69
69
  `typograf` uniquely inserts non-breaking spaces to prevent bad line breaks (e.g. before numbers, after colons). I might add this to `punctilio` in the future. `punctilio`’s other missing feature is non-English quote support—feel free to make a pull request!
70
70
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "punctilio",
3
- "version": "1.2.6",
3
+ "version": "1.2.8",
4
4
  "description": "Smart typography transformations: curly quotes, em-dashes, en-dashes, and more",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",