Package Exports
- rehype-prism
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (rehype-prism) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
rehype-prism
The unified plugin used to highlight code block in html with Prism.
And you have the ability to control whether to copy the language- class to <pre> tag
Install
npm i rehype-prismUsage
import unified from 'unified'
import rehyper from 'rehyper'
import markdown from 'remark-parse'
import remark2rehype from 'remark-rehype'
import highlightCode from 'rehype-prism'
import html from 'rehype-stringify'
// parse markdown to html
unified()
.use(markdown)
.use(remark2rehype)
// it should be after rehype
.use(highlightCode, { preLangClass: false })
.use(html)
.parse(/* markstring string */)
// parse code block in html string
rehyper()
.use(highlightCode)
.use(html)
.parse(/* html string */)Must disabled prism autoHighlight before import 'rehype-prism', if you use the plugin in browser. there are two way to do this:
set the
window.Prism = { manual: true }use the attribute
data-manualon the<script>element you used for prism.<script src="prism.js" data-manual></script>
Options
preLangClass(default: true): Whether to copy the
language-class to the<pre>tag.Some css style will be set to the
<pre class="language-xxx">, if you use the official theme.
Load More Languages
- Use babel-plugin-prismjs.(Recommend)
- Use
loadLanguages()provided byprismjs.(don't useloadLanguages()with Webpack or another bundler)
Load Themes
- If you use babel-plugin-prismjs.
import 'prismjs'will auto load the theme setted in babel-plugin-prismjs config. - Import theme css manual. e.g.
import 'prismjs/themes/prism-coy.css'