import { Component, AfterViewInit } from '@angular/core'; import * as Prism from 'prismjs'; @Component({ selector: 'app-alert', templateUrl: './alert.component.html', styleUrls: ['./alert.component.css'] }) export class AlertComponent implements AfterViewInit { /** * @method ngAfterViewInit */ ngAfterViewInit() { Prism.highlightAll(); } }