1.0.1 • Published 8 years ago
ngx-prism-highlight v1.0.1
Prism Highlight
This is an adaptation of the prismjs library that works as an Angular component.
Installation
Install prism-highlight with your favorite
package manager.
You will also need to install prismjs. Make sure that you
import the the libraries and styles you need from PrismJS
itself. For example, in main.ts:
import 'prismjs';
import 'prismjs/components/prism-typescript';
import 'prismjs/themes/prism.css';
import 'prismjs/themes/prism-dark.css';Usage
This module exports a single directive, prism-highlight
that takes the language for highlighting as an input.
<pre prism-highlight="typescript">${tsCode}</pre>