Hi all,
I've just opened
https://github.com/flyingsaucerproject/flyingsaucer/pull/44
Would be great if you could give it a short review (should be
uncomplicated).
Basically I've introduced a new CSS property that must be set on
elements in order to create a named destination with their ID attribute
value:
span.should-be-a-destination {
-fs-named-destination: create;
}
span.should-not-be-a-destination {
-fs-named-destination: none;
}
The current approach is to create a named destination for each element
that has an ID attribute.
Is it the correct way to do that via CSS or would a data attribute suit
better (harder to add to pre-created HTML though)?
Thanks,
Jens