In my Electron app, I am utilizing the Lora font and have run into an issue where text like mysterious `accent`
gets automatically converted to mysterious àccent
due to OpenType glyph composition.
<p>mysterious `accent`</p>
This becomes:
https://i.sstatic.net/VyaWJ.png
I attempted to disable this feature using
, but without success. The strange part is that this issue occurs within the Electron app, yet I cannot replicate it on platforms such as the Google Fonts page in Chrome.font-feature-settings: "ccmp" off
Is there a correct way to deactivate the ccmp
OpenType feature in Electron?