Mark Lansky
Mark Lansky
I really like it. Thank you! I guess I will stick to this fork for now. With this feature building themes with hover/focus/active state will be easier for me ...
This is not related to font If you can reproduce this issues with other pdf files, please close your issue
I guess there are workarounds for all files except `.viminfo` for now. Can't wait for closing this issue. Tired of trash in my home directory
Yep, can be confirmed. CLI tool doesn't do it correctly Some how this online tool [beautifytools.com/css-to-stylus-converter](https://beautifytools.com/css-to-stylus-converter.php) works fine with this case
I would like to contribute into this but I know English and Russian only :)
@Conduitry My usecase is ``` { "@context": "https://schema.org", "@type": "etc..." } ```
```svelte { "@context": "https://schema.org", "@type": "Corporation" } ``` becomes ```svelte {} ``` don't know if this related or not but I can't find any workarounds for ld-json... prettier is not...
As workaround I am now using svelte-meta-tags package, soo.. Please guys let me know if someone will bump into this issue later, I will reopen it
I usually do like this: ``` import { query } from "svelte-apollo"; import { GET_BOOKS } from "./queries"; const queryBooks = query(GET_BOOKS); $: books = $queryBooks.data?.books ```
Another workaround not mentioned here is to add export map to @apollo/client package directly: For me it was ``` "exports":{ ".": { "node":"./main.cjs", "default":"./index.js" }, "./cache": { "node":"./cache/cache.cjs","default":"./cache/index.js" }, "./core":...