Uses Prism to highlight code blocks.
# Example usage
Add the language to a code block:
```html
<p>Example</p>
```
Or for JavaScript:
```javascript
alert("Hello world!")
```
Alternatively a file name with suffix can be used:
```index.html
<p>Example</p>
```
npm i pimd @pimd/prism-plugin
const prismPlugin = require("@pimd/prism-plugin")
const config = new Config()
config.use(prismPlugin)
const markdown = `
`
const doc = new Document(markdown, config)
console.log(doc.render())
Copyright 2018++ Nico Hagenburger. See MIT-LICENSE for details. Get in touch with @hagenburger on Twitter or open an issue.