This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- better include github md style for table format --> | |
<!-- Styles --> | |
<link rel="stylesheet" href="./github-md-style.css"> | |
<main> | |
</main> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Node.js with Vue | |
# Build a Node.js project that uses Vue. | |
# Add steps that analyze code, save build artifacts, deploy, and more: | |
# https://docs.microsoft.com/azure/devops/pipelines/languages/javascript | |
trigger: | |
- master | |
pool: | |
vmImage: ubuntu-latest |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// PDFGenerator.js | |
import jsPDF from 'jspdf'; | |
import html2canvas from 'html2canvas'; | |
import esv_logo from '../assets/images/logo_esv.png'; | |
class PDFGenerator { | |
constructor(title = "Analytics") { | |
this.pdf = new jsPDF(); | |
this.currentY = 20; | |
this.title = title; |