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