occam-styles 5.0.115 → 5.0.118
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/example.js +226 -5
- package/font/JuliaMono-Regular.woff2 +0 -0
- package/lib/example/view/paragraph/monospace.js +206 -0
- package/lib/example/view.js +4 -2
- package/lib/mixin/font/juliaMono.js +2 -2
- package/package.json +5 -5
- package/src/example/view/paragraph/monospace.js +26 -0
- package/src/example/view.js +2 -0
- package/src/mixin/font/juliaMono.js +1 -0
package/README.md
CHANGED
|
@@ -50,7 +50,7 @@ Ligatures and their like can be removed with the using `pyftsubset`:
|
|
|
50
50
|
|
|
51
51
|
```
|
|
52
52
|
pip install fonttools
|
|
53
|
-
pyftsubset JuliaMono-Regular.ttf '*' --output-file=JuliaMono-Regular.ttf --layout-features-=
|
|
53
|
+
pyftsubset JuliaMono-Regular.ttf '*' --output-file=JuliaMono-Regular.ttf --layout-features-=calt,liga
|
|
54
54
|
```
|
|
55
55
|
|
|
56
56
|
If you have a Mac with Homebrew installed then you can install the utility to convert the TTF file to WOFF2 thus:
|