Guillaume Ayoub
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...
Some cases are handled by f992fd5.
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.