João Pesce

Results 4 comments of João Pesce

Are you adding it before loading polyglot? From the docs: > Individual language packs can be disabled by setting g:polyglot_disabled [...] > > Please declare this variable before polyglot is...

Hey, thanks for the quick reply! [VTEX](https://vtex.com/us-en/)'s newest [development platform (VTEX IO)](https://vtex.io/docs/getting-started/build-stores-with-store-framework/4/) uses `jsonc` and supports unquoted values. Not sure if they use specifically `komkom/jsonc`, but the feature is definitely...

With the new [CSS :has pseudo-class](https://developer.mozilla.org/en-US/docs/Web/CSS/:has) it's possible to target the parent element like the following: Markdown ```md ![Fig. 1](fig.png){.nofloat} ``` HTML ```html Fig. 1 ``` CSS ```css figure:has(img.nofloat) {...