ng2-encrm-components
Version:
19 lines (14 loc) • 358 B
text/typescript
import { Directive, ElementRef, Input } from '@angular/core';
declare var hljs: any;
({
selector: 'code[highlight]'
})
export class HighlightCodeDirective {
constructor(private elementRef: ElementRef) {
}
ngAfterViewInit() {
if (this.elementRef.nativeElement) {
hljs.highlightBlock(this.elementRef.nativeElement);
}
}
}