occam-styles 4.1.123 → 4.1.126
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 +6 -0
- package/example.js +915 -252
- package/lib/example/view.js +7 -1
- package/lib/scheme/prettyPrinter.js +11 -1
- package/lib/styles.js +5 -1
- package/lib/svg/fold/bottomOpen.js +156 -0
- package/lib/svg/fold/closed.js +157 -0
- package/lib/svg/fold/topOpen.js +156 -0
- package/lib/svg/fold.js +137 -0
- package/package.json +1 -1
- package/src/example/view.js +6 -0
- package/src/scheme/prettyPrinter.js +6 -0
- package/src/styles.js +1 -0
- package/src/svg/fold/bottomOpen.js +24 -0
- package/src/svg/fold/closed.js +23 -0
- package/src/svg/fold/topOpen.js +24 -0
- package/src/svg/fold.js +20 -0
- package/svg/closedFold.svg +81 -0
- package/svg/openFoldBottom.svg +82 -0
- package/svg/openFoldTop.svg +82 -0
package/README.md
CHANGED
|
@@ -46,6 +46,12 @@ Compression is then straightforward, for example:
|
|
|
46
46
|
woff2_compress JuliaMono-Regular.ttf
|
|
47
47
|
```
|
|
48
48
|
|
|
49
|
+
For instructions on how to remove all ligatures, etc, see the following:
|
|
50
|
+
|
|
51
|
+
* [How to turn off ligatures and contextual alternate characters in CSS](https://github.com/cormullion/juliamono/issues/159#issuecomment-1453900328)
|
|
52
|
+
|
|
53
|
+
Only the regular font face is being used currently.
|
|
54
|
+
|
|
49
55
|
## Building
|
|
50
56
|
|
|
51
57
|
Automation is done with [npm scripts](https://docs.npmjs.com/misc/scripts), have a look at the `package.json` file. The pertinent commands are:
|