在 Angular 8 应用程序中,我需要显示原始 html 代码而不对其进行评估(如代码片段)。
例如
<div #sample>
{{'standard-button' | translate}}
<ng-container *ngIf="!clicked">
{{'not' | translate}}
</ng-container>
{{'clicked' | translate}}
</div>
有没有办法得到下面的 html?我正在使用 highlightJS 但不幸的是它会评估插值{{}}
。
先感谢您