markdown-it-prism-zhc
v1.1.3
Published
Highlights code blocks in markdown-it using Prism.
Downloads
10
Maintainers
Readme
markdown-it-prism
markdown-it plugin to highlight code blocks using Prism
Usage
const md = require('markdown-it')();
const prism = require('markdown-it-prism');
md.use(prism, options);
Options
The options
object may contain:
Name | Description | Default
-------|-------------|--------
plugins
| Array of Prism Plugins to load. The names to use can be found here. Please note that some prism plugins (notably line-numbers) rely on the DOM being present and can thus not be used with this package (see #1). | []
init
| A function called after setting up prism. Will receive the prism instance as only argument. Useful for plugins needing further intialisation. | () => {}