I'm trying to Export a URL to PDF. As shown in the code below, solutionUrl is a link to an article. I want to be able to see the article in the saved pdf file. Right now it only shows the link inside the pdf file.
component.st:
downloadPDF() {
const doc = new jsPDF();
doc.text(this.solutionUrl, 10, 10 );
doc.save('Solution.pdf');
}
component.html:
<button title="Export to PDF" (click)="downloadPDF()"> <i class="glyphicon glyphicon-file"></i></button>