prismjs
该插件使用 Prism.js 来为 Markdown 代码块启用代码高亮。
该插件已经集成到默认主题中。
需要注意的是,该插件仅会给代码块添加 HTML 标记,而不会添加样式。当你在一个自定义主题中使用它时,可能需要自己选择并引入 Prism.js 样式主题。
使用方法
npm i -D @vuepress/plugin-prismjs@next
import { prismjsPlugin } from '@vuepress/plugin-prismjs'
export default {
plugins: [
prismjsPlugin({
// 配置项
}),
],
}
配置项
theme
类型:
PrismjsTheme
默认值:
'nord'
详情:Prismjs 的主题。该主题会应用到代码块上。
themes
类型:
{ light: PrismjsTheme; dark: PrismjsTheme }
详情:
使用暗黑和明亮模式双主题。
注意:想使用这个功能,你的主题必须在夜间模式下在
<html>
标签上data-theme="dark"
属性。
可用的 Prism.js 浅色主题
- ateliersulphurpool-light
- coldark-cold
- coy
- duotone-light
- ghcolors
- gruvbox-light
- material-light
- one-light
- vs
可用的 Prism.js 深色主题
- atom-dark
- cb
- coldark-dark
- dark
- dracula
- duotone-dark
- duotone-earth
- duotone-forest
- duotone-sea
- duotone-space
- gruvbox-dark
- holi
- hopscotch
- lucario
- material-dark
- material-oceanic
- night-owl
- nord
- one-dark
- pojoaque
- shades-of-purple
- solarized-dark-atom
- tomorrow
- vsc-dark-plus
- xonokai
- z-touch
lineNumbers
类型:
boolean | number | 'disable'
默认值:
true
详情:
number
:显示行号所需的最少行数。
例如,如果你将它设置为 4 ,那么只有在你的代码块包含至少 4 行代码时才会启用行号。true
:全局启用代码行号false
:全局禁用代码行号。'disable'
: 完全禁用行号,:line-numbers
标记不会生效。
你可以在代码块添加
:line-numbers
/:no-line-numbers
标记来覆盖配置项中的设置,还可以在:line-numbers
之后添加=
来自定义起始行号,例如:line-numbers=2
表示代码块中的行号从2
开始。
输入:
```ts :line-numbers
// 启用行号
const line2 = 'This is line 2'
const line3 = 'This is line 3'
```
```ts :no-line-numbers
// 禁用行号
const line2 = 'This is line 2'
const line3 = 'This is line 3'
```
```ts :line-numbers=2
// 行号已启用,并从 2 开始
const line3 = 'This is line 3'
const line4 = 'This is line 4'
```
输出:
// 启用行号
const line2 = 'This is line 2'
const line3 = 'This is line 3'
// 禁用行号
const line2 = 'This is line 2'
const line3 = 'This is line 3'
// 行号已启用,并从 2 开始
const line3 = 'This is line 3'
const line4 = 'This is line 4'
highlightLines
类型:
boolean
默认值:
true
详情:
是否启用行高亮。启用后,可在代码块的信息描述中添加行数标记来高亮指定的行:
- 行数范围:
{5-8}
- 多个单行:
{4,7,9}
- 组合:
{4,7-13,16,23-27,40}
- 行数范围:
输入:
```ts {1,7-9}
import { defaultTheme } from '@vuepress/theme-default'
import { defineUserConfig } from 'vuepress'
export default defineUserConfig({
title: '你好, VuePress',
theme: defaultTheme({
logo: 'https://vuejs.org/images/logo.png',
}),
})
```
输出:
import { defaultTheme } from '@vuepress/theme-default'
import { defineUserConfig } from 'vuepress'
export default defineUserConfig({
title: '你好, VuePress',
theme: defaultTheme({
logo: 'https://vuejs.org/images/logo.png',
}),
})
collapsedLines
类型:
boolean | number | 'disable'
默认值:
'disable'
详情:代码块折叠的默认行为。
number
: 从第number
行开始折叠代码块,例如,12
表示从第 12 行开始折叠代码块。true
: 等同于15
, 从第 15 行开始折叠代码块。false
: 添加代码块折叠支持,但全局禁用此功能。'disable'
: 完全禁用代码块折叠,:collapsed-lines
标记不会生效。
你可以在代码块添加
:collapsed-lines
/:no-collapsed-lines
标记来覆盖配置项中的设置。还可以在:collapsed-lines
之后添加=
来自定义起始折叠行号,例如:collapsed-lines=12
表示代码块从第 12 行开始折叠。
输入:
<!-- 默认从第 15 行开始折叠 -->
```css :collapsed-lines
html {
margin: 0;
background: black;
height: 100%;
}
/* ... 更多代码 */
```
<!-- 禁用折叠 -->
```css :no-collapsed-lines
html {
margin: 0;
background: black;
height: 100%;
}
/* ... 更多代码 */
```
<!-- 从第 10 行开始折叠 -->
```css :collapsed-lines=10
html {
margin: 0;
background: black;
height: 100%;
}
/* ... 更多代码 */
```
输出:
html {
margin: 0;
background: black;
height: 100%;
}
body {
margin: 0;
width: 100%;
height: inherit;
}
/* the three main rows going down the page */
body > div {
height: 25%;
}
.thumb {
float: left;
width: 25%;
height: 100%;
object-fit: cover;
}
.main {
display: none;
}
.blowup {
display: block;
position: absolute;
object-fit: contain;
object-position: center;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 2000;
}
.darken {
opacity: 0.4;
}
html {
margin: 0;
background: black;
height: 100%;
}
body {
margin: 0;
width: 100%;
height: inherit;
}
/* the three main rows going down the page */
body > div {
height: 25%;
}
.thumb {
float: left;
width: 25%;
height: 100%;
object-fit: cover;
}
.main {
display: none;
}
.blowup {
display: block;
position: absolute;
object-fit: contain;
object-position: center;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 2000;
}
.darken {
opacity: 0.4;
}
html {
margin: 0;
background: black;
height: 100%;
}
body {
margin: 0;
width: 100%;
height: inherit;
}
/* the three main rows going down the page */
body > div {
height: 25%;
}
.thumb {
float: left;
width: 25%;
height: 100%;
object-fit: cover;
}
.main {
display: none;
}
.blowup {
display: block;
position: absolute;
object-fit: contain;
object-position: center;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 2000;
}
.darken {
opacity: 0.4;
}
提示
在新的版本中,实现了类似于 shiki 的部分功能,
你可以使用与其相同的语法来为代码块添加样式。
notationDiff
类型:
boolean
默认值:
false
详情:是否启用差异标记。
示例:
输入:
```ts console.log('hewwo') // [!code --] console.log('hello') // [!code ++] console.log('goodbye') ```
输出:
console.log('hewwo') console.log('hello') console.log('goodbye')
参考:
notationFocus
类型:
boolean
默认值:
false
详情:是否启用聚焦标记。
示例:
输入:
```ts console.log('Not focused') console.log('Focused') // [!code focus] console.log('Not focused') ```
输出:
console.log('Not focused') console.log('Focused') console.log('Not focused')
参考:
notationHighlight
类型:
boolean
默认值:
false
详情:是否启用高亮标记。
示例:
输入:
```ts console.log('Not highlighted') console.log('Highlighted') // [!code highlight] console.log('Not highlighted') ```
输出:
console.log('Not highlighted') console.log('Highlighted') console.log('Not highlighted')
参考:
notationErrorLevel
类型:
boolean
默认值:
false
详情:是否启用错误级别标记。
示例:
输入:
```ts console.log('No errors or warnings') console.warn('Warning') // [!code warning] console.error('Error') // [!code error] ```
输出:
console.log('No errors or warnings') console.warn('Warning') console.error('Error')
参考:
notationWordHighlight
类型:
boolean
默认值:
false
详情:是否启用词高亮标记。
词高亮标记 必须单独写在一行。
示例:
输入:
```ts // [!code word:Hello] const message = 'Hello World' console.log(message) // prints Hello World ```
输出:
const message = 'Hello World' console.log(message) // prints Hello World
示例:根据代码片段中提供的元字符串,高亮显示词
输入:
```js /Hello/ const msg = 'Hello World' console.log(msg) console.log(msg) // 打印 Hello World ```
输出:
const msg = 'Hello World' console.log(msg) console.log(msg) // 打印 Hello World
参考:
whitespace
类型:
boolean | 'all' | 'boundary' | 'trailing'
默认值:
false
详情:是否启用空白符(空格 和 Tab)渲染。
true
: 启用空白符渲染,等同于all
false
: 禁用空白符渲染'all'
: 渲染所有空白符'boundary'
: 仅渲染行首行尾的空白符'trailing'
: 仅渲染行尾的空白符
你可以在代码块中添加
:whitespace / :no-whitespace
标记来覆盖配置项中的设置。还可以在:whitespace
之后添加=
来定义渲染空白符的方式。比如:whitespace=boundary
将渲染行首行尾的空白符。示例:
输入:
```md :whitespace <!-- 渲染所有空白符 --> 具有尾随空格 的文字 缩进文字 ``` ```md :whitespace=boundary <!-- 渲染行首行尾的空白符 --> 具有尾随空格 的文字 缩进文字 ``` ```md :whitespace=trailing <!-- 渲染行尾的空白符 --> 具有尾随空格 的文字 缩进文字 ``` ```md :no-whitespace <!-- 禁用空白符 --> A text with line break code block ```
输出:
<!-- 渲染所有空白符 --> 具有尾随空格 的文字 缩进文字
<!-- 渲染行首行尾的空白符 --> 具有尾随空格 的文字 缩进文字
<!-- 渲染行尾的空白符 --> 具有尾随空格 的文字 缩进文字
<!-- 禁用空白符 --> A text with line break code block
参考:
preloadLanguages
类型:
string[]
默认值:
['markdown', 'jsdoc', 'yaml']
详情:
需要预加载的语言。
默认情况下,语言会在解析 Markdown 文件时按需加载。
然而, Prism.js 在动态加载语言时可能会遇到 一些潜在的问题 。为了避免这些问题,你可以使用该配置项来预加载一些语言。
preWrapper
类型:
boolean
默认值:
true
详情:
是否在
<pre>
标签外添加包裹容器。lineNumbers
和collapsedLines
依赖于这个额外的包裹层。这换句话说,如果你禁用了preWrapper
,那么行号和折叠代码块也会被同时禁用。提示
如果你想要在客户端来实现这些功能时,可以禁用该配置项。比如使用 Prismjs Line Highlight 或者 Prismjs Line Numbers。