I am using the css3 counter feature to automatically number headings in my document similar to the way it is done
here:
Code: CSS
h1:before {
content: counter(h1counter) ".\0000a0\0000a0";
counter-increment: h1counter;
}
h1 {
counter-reset: h2counter;
}
h2:before {
content: counter(h1counter) "." counter(h2counter) ".\0000a0\0000a0";
counter-increment: h2counter;
}
h2 {
counter-reset: h3counter;
}
When I transform the HTML into PDF using EO.PDF, the numbering is lost. So I assume, the counter feature is not supported? Is it planned to add this and if so: when?
Thanks for looking into this issue already.
John