Hello,
I'm working with PDF annotations using PrinceXML version 15.4.1, and I was wondering if it is possible to generate a single annotation for content that is located in separate nodes. I tried using ids, but two different annotations are generated:
Is there any way to generate a unique annotation?
Thanks in advance!
I'm working with PDF annotations using PrinceXML version 15.4.1, and I was wondering if it is possible to generate a single annotation for content that is located in separate nodes. I tried using ids, but two different annotations are generated:
#comment {
-prince-pdf-annotation-type: text;
-prince-pdf-annotation-contents: 'Are you sure?';
}
<body>
<p>
This is just
<span id="comment"> a comment </span>
</p>
<p><span id="comment"> with some random </span> content</p>
</body>
Is there any way to generate a unique annotation?
Thanks in advance!