Guillaume Ayoub

Results 801 comments of Guillaume Ayoub

> @liZe I don't have the time right now, maybe in july. The suggestions of @luca-vercelli look good to me. What do you think? @vpoulailleau Looks good to me. You...

Hi! There’s currently no way to add signature fields in WeasyPrint, because unfortunately there’s no `type="signature"` input type in HTML. As we don’t want to implement features that are not...

If anyone wants to help on the topic: - If you include signatures with WeasyPrint, don’t hesitate to share a link to your code here so that other can adapt...

Hi! > The [spec](https://www.w3.org/TR/css-gcpm-3/#footnotes) mentions the "footnote rule", but doesn't actually specify how to create it. Here’s a [simple example](https://www.courtbouillon.org/blog/00020-footnotes/) that will help. > Is it reasonable to expect "::before"...

There are many cases where we silently ignore errors or even accept them: ```html @import::before 'test.css'; @page { @top-left-corner super { background: yellow; content: "a"; } @unknown { } @footnote::before...

Hi! Thanks for the report. It looks like there are 2 different problems: - `.footnote::footnote-call` and `.footnote::footnote-marker` don’t match the elements, but `::footnote-call` and `::footnote-marker` do. We have to check...

> * `.footnote::footnote-call` and `.footnote::footnote-marker` don’t match the elements, but `::footnote-call` and `::footnote-marker` do. We have to check the specification to find exactly what’s supposed to work. There’s nothing in...

> There’s nothing in the specification about that. As it seems to work with other renderers, we can assume that it’s the way it should work. I’m not sure about...

> * The color is not applied to the footnote marker. Maybe that’s related to the way we handle markers. That was just a bug for footnote markers.