OpenSlides/client/src/app/slides/topics/topic/topic-slide.component.html
GabrielMeyer efe8f3e862 Adds sanitizer to render text correctly
Sanitized the text, which is displayed, to show formatting like
centering, bold etc.

Sanitized the text for projectors
2019-02-22 12:12:08 +01:00

6 lines
122 B
HTML

<div *ngIf="data">
<h1>{{ data.data.title }}</h1>
<div [innerHTML]="sanitizedText(data.data.text)"></div>
</div>