Implemented the basics for templateing feature/3-pdf_templateing #4

Merged
niggl merged 12 commits from feature/3-pdf_templateing into dev 2021-02-03 17:02:02 +00:00
Showing only changes of commit 557cc26f28 - Show all commits

14
src/PdfCreator.ts Normal file
View File

@ -0,0 +1,14 @@
import fs from "fs";
import path from 'path';
/**
* This class is responsible for all things pdf creation.
* This uses the html templates from src/templates.
*/
export class PdFCreator {
private templateDir = path.join(__dirname, '/templates');
public generateSponsoringContract() {
const template = fs.readFileSync(`${this.templateDir}/sponsoring_contract.html`, 'utf8');
}
}