()
| 683 | } |
| 684 | |
| 685 | protected makeHtml(): string { |
| 686 | const ejsData = this.makeEjsData(); |
| 687 | const html = ejs.render(this.htmlTemplate, ejsData); |
| 688 | return html; |
| 689 | } |
| 690 | |
| 691 | protected makeEjsData(): EjsData { |
| 692 | const asLocalPath = (relPath: string) => { |
no test coverage detected