I would like to use NodeJS Puppeteer to prepare PDF that support page jumping from Summary Page. How can I do that?
Can NodeJS Puppeteer printed PDF have feature like HTML's or Adobe's Hyperlink to jump to other part on PDF?
Asked
Active
Viewed 637 times
2 Answers
0
It is support by using <a>
with adding below css:
@media print {
a::after{
content: " (" attr(href) ") ";
}
}

DaiKeung
- 1,077
- 1
- 19
- 38