Compile your Angular 2.x - Angular 8.x templates for print, emails, etc
let data = { name: 'Roman' };
let element = htmlToElement(`<div>{{name}}</div>`);
await compileTemplate(result, data);
- string interpolation
- ng-template
- ng-container
- *ngIf + *ngIf as
- *ngFor
- [style.xxx]="value"
- [style.xxx.px]="value"
- [class.xxx]="value"