Guillaume Ayoub

Results 801 comments of 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...