Guillaume Ayoub
Guillaume Ayoub
Hi @luca-vercelli, Thank for your commit. > I did not use Pango's `is_expandable_space`, as it just searches for `\u0020` and `\u0040` . You got the idea. It actually looks for...
Fixed by #2390.
Hi, and thanks for the report! This missing feature is caused by the dirty code used for SVG attributes management. We should use the real validated and computed values of...
> Instead, `SVG` constructor creates a `.style` property that contains a list of `cssselect2.Matcher` based on the `` block. This is for historical reasons. The SVG code comes from a...
Thanks a lot for the bug report and the examples.
This bug appears because in WeasyPrint, markers are absolutely positioned boxes: vertically they are positioned to be on the left of the content of the `li` box, and horizontally to...
Thanks for the bug report. It is supported by browsers, but itâs not in the SVG specification, even in SVG2. Itâs in [this draft](https://www.w3.org/TR/2009/WD-SVG-Transforms-20090320/), overridden by [this CSS module](https://www.w3.org/TR/css-transforms-1/).
If anyone is interested in adding this feature, we need to update this function (and the `utils.transform` function it calls) to take care of `transform-origin`: https://github.com/Kozea/WeasyPrint/blob/a5d8412d0f11e815db31652fdd88fed2fecfeb66/weasyprint/svg/__init__.py#L748-L755
> Hi, is this still available for me to work on? Yes, of course! Donât hesitate to ask if you have any questions.
> Is there anywhere in code that actually allows setting the origin based on this value? Youâre on the right track! What you can do is give `node` instead of...