Guillaume Ayoub
Guillaume Ayoub
Handling the `none` value adds an interesting complexity. And by "interesting", I mean another word. As we sometimes convert the original value into "normalized" value (for example `hsl` to `rgb`...
Hi! The problem is that we donât support (yet) the [`href` attribute of gradients](https://www.w3.org/TR/SVG11/pservers.html#LinearGradients). As a workaround, you can replace ```svg ``` by ```svg ``` Iâve seen (too?) many SVG...
Hello! Youâre right, this document take a lot of time to render. Logs tell that the problem comes from the layout part, I have to check whatâs taking so much...
The rendering is slow because of the nested flex layouts. Flex layout is not really optimized, but it shouldnât be that slowâŠ
> I've found an alternative to flex layout and used it in my code and the PDF generation time has improved a lot. :+1: Thanks a lot for your solution!...
Hi! That would definitely be an improvement, even if I think that itâs not really specified (and itâs pretty hard to implement, I think). Splitting a `break-inside: avoid` block early...
Hello! No, itâs not possible (yet). But when we have our own PDF writer (you can follow #1232 if you want to get news about that), weâll be able to...
#70 is probably interesting to read and could give expected levels of memory needed to render long tables. Iâll check your example as soon as possible.
Iâm back, sorry for the delay⊠> 1. My rows printed are just 4999 Theyâre 5000, the first one is 0 :wink:. > 2\. My table formatting is not like...
The problem is that `var` (and other functions such as `attr`) donât work when properties have multiple values. A workaround for now is to use `border-bottom-color: var(--primary-color)`. As said in...