vite-plugin-prismjs-plus
v1.0.2
Published
A Vite plugin to use PrismJS with standard bundlers.
Downloads
12
Readme
vite-plugin-prismjs-plus
A Vite plugin to use PrismJS with standard bundlers.
How to Use
This plugin allows you to treat PrismJS as a virtual module and configure what languages, plugins, & themes you want to bundle with Prism.
In your code, import virtual:prismjs
:
import Prism from 'virtual:prismjs';
Prism.highlightAll();
The exported Prism
object will be the fully-configured Prism instance.
Type
// vite-env.d.ts
/// <reference types="vite-plugin-prismjs-plus/client" />
Limitations
- You must be using ES6 imports to load PrismJS.
Configuring the plugin
Install
npm install --save-dev vite-plugin-prismjs-plus
Config
// vite.config.js
import prismjsPlugin from 'vite-plugin-prismjs-plus'
export default {
plugins: [
prismjsPlugin({
manual: true,
languages: [
'markup',
'javascript',
'css',
'php',
'ruby',
'python',
'java',
'c',
'csharp',
'cpp',
],
plugins: [
'line-numbers',
'copy-to-clipboard',
],
theme: 'twilight',
css: true,
}),
],
}
Each key are used as follows:
manual
: Boolean indicating whether to use Prism functions manually. Defaults tofalse
.languages
: Array of languages to include in the bundle or"all"
to include all languages. Those languages can be found here.plugins
: Array of plugins to include in the bundle. Those plugins can be found here.theme
: Name of theme to include in the bundle. Themes can be found here.css
: Boolean indicating whether to include.css
files in the result. Defaults tofalse
. Iftrue
,import
s will be added for.css
files. Must betrue
in order fortheme
to work.