Open zopyx opened 2 years ago
Thanks for opening the issue!
I had the same issue. Removing this resolves it:
::footnote-marker {
content: counter(footnote, loweralpha) ". ";
}
But that is what is suggested in the release notes announcing footnote support
yes, it’s a bug we need to figure out what happens here.
Spent some time on it, and for unknow reason i manage to make it work by callng another counter:
.footnote::footnote-marker {
content: counter(footnote-marker, lower-roman);
font-size: 14pt;
color: blue;
}
counter foonote-marker
works while footnote footnote
doesn’t so i assume there is something wrong if how it does the calculation, as the note number is always the maximum amount of note there is on a page.
@fchasen you may want to have a look!
The footnotes have both the counter
2
https://github.com/zopyx/print-css-rocks/tree/master/lessons/lesson-footnotes