For example if I have data like this in not-working.component.ts
private _data: string = '<a routerLink="/not-working">click here to see it's not working</a>'
and in view not-working.component.jade
:
div
.wrapper([innerHtml]="_data")
so the result will be
div
.wrapper
a(routerLink="/not-working")
And the issue here is that routerLink is not rendered as a directive or angular component. Is it possible to render it as a component/directive?