代码块
文档中的代码块功能强大 💪。
代码标题
您可以在代码块后添加一个 title
键来添加标题(在它们之间留一个空格)。
```jsx title="/src/components/HelloCodeTitle.js"
function HelloCodeTitle(props) {
return <h1>Hello, {props.name}</h1>;
}
```
function HelloCodeTitle(props) {
return <h1>Hello, {props.name}</h1>;
}
语法高亮
代码块是被三个反引号包围的文本块。您可以查看 此参考 以了解 MDX 的规范。
```js
console.log('Every repo must come with a mascot.');
```
使用与您的代码块匹配的语言元字符串,Docusaurus 将自动获取语法高亮,由 Prism React Renderer 提供支持。
console.log('Every repo must come with a mascot.');
主题
默认情况下,我们使用的 Prism 语法高亮主题 是 Palenight。您可以通过在 prism
中传递 theme
字段作为 themeConfig
到您的 docusaurus.config.js 来将其更改为其他主题。
例如,如果您更喜欢使用 dracula
高亮主题
import {themes as prismThemes} from 'prism-react-renderer';
export default {
themeConfig: {
prism: {
theme: prismThemes.dracula,
},
},
};
因为 Prism 主题只是一个 JS 对象,所以如果您对默认主题不满意,您也可以编写自己的主题。Docusaurus 增强了 github
和 vsDark
主题以提供更丰富的高亮,您可以查看我们针对 浅色 和 深色 代码块主题的实现。
支持的语言
默认情况下,Docusaurus 带有一组 常用语言。
一些流行的语言,如 Java、C# 或 PHP,默认情况下未启用。
要为任何其他 Prism 支持的语言 添加语法高亮,请在其他语言的数组中定义它。
每种其他语言都必须是有效的 Prism 组件名称。例如,Prism 会将语言 cs
映射到 csharp
,但只有 prism-csharp.js
存在作为组件,因此您需要使用 additionalLanguages: ['csharp']
。您可以查看 node_modules/prismjs/components
以查找所有可用的组件(语言)。
例如,如果您想为 PowerShell 语言添加高亮
export default {
// ...
themeConfig: {
prism: {
additionalLanguages: ['powershell'],
},
// ...
},
};
添加 additionalLanguages
后,重新启动 Docusaurus。
如果您想为 Prism 尚不支持的语言添加高亮,您可以 swizzle prism-include-languages
- npm
- Yarn
- pnpm
npm run swizzle @docusaurus/theme-classic prism-include-languages
yarn swizzle @docusaurus/theme-classic prism-include-languages
pnpm run swizzle @docusaurus/theme-classic prism-include-languages
它将在您的 src/theme
文件夹中生成 prism-include-languages.js
。您可以通过编辑 prism-include-languages.js
为自定义语言添加高亮支持。
const prismIncludeLanguages = (Prism) => {
// ...
additionalLanguages.forEach((lang) => {
require(`prismjs/components/prism-${lang}`);
});
require('/path/to/your/prism-language-definition');
// ...
};
编写自己的语言定义时,可以参考 Prism 的官方语言定义。
添加自定义语言定义时,无需将语言添加到 additionalLanguages
配置数组中,因为 Docusaurus 只在 Prism 提供的语言中查找 additionalLanguages
字符串。在 prism-include-languages.js
中添加语言导入就足够了。
行高亮
使用注释进行高亮
您可以使用带有 highlight-next-line
、highlight-start
和 highlight-end
的注释来选择要高亮的哪些行。
```js
function HighlightSomeText(highlight) {
if (highlight) {
// highlight-next-line
return 'This text is highlighted!';
}
return 'Nothing highlighted';
}
function HighlightMoreText(highlight) {
// highlight-start
if (highlight) {
return 'This range is highlighted!';
}
// highlight-end
return 'Nothing highlighted';
}
```
function HighlightSomeText(highlight) {
if (highlight) {
return 'This text is highlighted!';
}
return 'Nothing highlighted';
}
function HighlightMoreText(highlight) {
if (highlight) {
return 'This range is highlighted!';
}
return 'Nothing highlighted';
}
支持的注释语法
样式 | 语法 |
---|---|
C 样式 | /* ... */ 和 // ... |
JSX 样式 | {/* ... */} |
Bash 样式 | # ... |
HTML 样式 | <!-- ... --> |
我们将尽最大努力根据语言推断要使用哪组注释样式,并默认允许所有注释样式。如果当前不支持某种注释样式,我们乐于添加它们!欢迎提交请求。请注意,不同的注释样式没有语义差异,只有它们的内容有差异。
您可以在 src/css/custom.css
中设置高亮代码行的背景颜色,使其更符合您选择的语法高亮主题。下面给出的颜色适用于默认的高亮主题(Palenight),因此如果您使用的是其他主题,则需要相应地调整颜色。
:root {
--docusaurus-highlighted-code-line-bg: rgb(72, 77, 91);
}
/* If you have a different syntax highlighting theme for dark mode. */
[data-theme='dark'] {
/* Color which works with dark mode syntax highlighting theme */
--docusaurus-highlighted-code-line-bg: rgb(100, 100, 100);
}
如果您还需要以其他方式设置高亮代码行的样式,则可以定位到 theme-code-block-highlighted-line
CSS 类。
使用元数据字符串进行高亮
您还可以指定语言元字符串中高亮的行范围(在语言后留一个空格)。要高亮多行,请用逗号分隔行号或使用范围语法来选择一行代码块。此功能使用 parse-number-range
库,您可以在其项目详细信息中找到 更多语法。
```jsx {1,4-6,11}
import React from 'react';
function MyComponent(props) {
if (props.isBar) {
return <div>Bar</div>;
}
return <div>Foo</div>;
}
export default MyComponent;
```
import React from 'react';
function MyComponent(props) {
if (props.isBar) {
return <div>Bar</div>;
}
return <div>Foo</div>;
}
export default MyComponent;
如果可以,请优先使用注释进行高亮。通过在代码中内联高亮,如果您的代码块变得很长,您不必手动计算行数。如果添加/删除行,您也不必偏移行范围。
- ```jsx {3}
+ ```jsx {4}
function HighlightSomeText(highlight) {
if (highlight) {
+ console.log('Highlighted text found');
return 'This text is highlighted!';
}
return 'Nothing highlighted';
}
```
下面,我们将介绍如何扩展神奇注释系统以定义自定义指令及其功能。只有在不存在高亮元字符串时才会解析神奇注释。
自定义神奇注释
// highlight-next-line
和 // highlight-start
等被称为“神奇注释”,因为它们将被解析并删除,其目的是向下一行或由一对开始和结束注释包围的部分添加元数据。
您可以通过主题配置声明自定义神奇注释。例如,您可以注册另一个添加 code-block-error-line
类名称的神奇注释
- docusaurus.config.js
- src/css/custom.css
- myDoc.md
export default {
themeConfig: {
prism: {
magicComments: [
// Remember to extend the default highlight class name as well!
{
className: 'theme-code-block-highlighted-line',
line: 'highlight-next-line',
block: {start: 'highlight-start', end: 'highlight-end'},
},
{
className: 'code-block-error-line',
line: 'This will error',
},
],
},
},
};
.code-block-error-line {
background-color: #ff000020;
display: block;
margin: 0 calc(-1 * var(--ifm-pre-padding));
padding: 0 var(--ifm-pre-padding);
border-left: 3px solid #ff000080;
}
In JavaScript, trying to access properties on `null` will error.
```js
const name = null;
// This will error
console.log(name.toUpperCase());
// Uncaught TypeError: Cannot read properties of null (reading 'toUpperCase')
```
在 JavaScript 中,尝试访问 null
上的属性将导致错误。
const name = null;
console.log(name.toUpperCase());
// Uncaught TypeError: Cannot read properties of null (reading 'toUpperCase')
如果您在元字符串中使用数字范围({1,3-4}
语法),Docusaurus 将应用第一个 magicComments
条目的类名称。默认情况下,它是 theme-code-block-highlighted-line
,但如果您更改 magicComments
配置并使用不同的条目作为第一个条目,则元字符串范围的含义也将发生变化。
您可以使用 magicComments: []
禁用默认的行高亮注释。如果没有神奇注释配置,但 Docusaurus 遇到包含元字符串范围的代码块,它将出错,因为将没有类名称可应用——毕竟,高亮类名称只是一个神奇注释条目。
每个神奇注释条目将包含三个键:className
(必需)、line
,它应用于直接下一行,或 block
(包含 start
和 end
),它应用于这两个注释包围的整个块。
使用 CSS 定位类已经可以做很多事情,但您可以通过 swizzling 释放此功能的全部潜力。
- npm
- Yarn
- pnpm
npm run swizzle @docusaurus/theme-classic CodeBlock/Line
yarn swizzle @docusaurus/theme-classic CodeBlock/Line
pnpm run swizzle @docusaurus/theme-classic CodeBlock/Line
Line
组件会接收类名列表,您可以根据它有条件地渲染不同的标记。
行号
您可以通过在语言元字符串中使用 showLineNumbers
键来启用代码块的行号(不要忘记在键之前添加空格)。
```jsx {1,4-6,11} showLineNumbers
import React from 'react';
function MyComponent(props) {
if (props.isBar) {
return <div>Bar</div>;
}
return <div>Foo</div>;
}
export default MyComponent;
```
import React from 'react';
function MyComponent(props) {
if (props.isBar) {
return <div>Bar</div>;
}
return <div>Foo</div>;
}
export default MyComponent;
交互式代码编辑器
(由 React Live 提供支持)
您可以使用 @docusaurus/theme-live-codeblock
插件创建交互式代码编辑器。首先,将插件添加到您的包中。
- npm
- Yarn
- pnpm
npm install --save @docusaurus/theme-live-codeblock
yarn add @docusaurus/theme-live-codeblock
pnpm add @docusaurus/theme-live-codeblock
您还需要将插件添加到您的 docusaurus.config.js
中。
export default {
// ...
themes: ['@docusaurus/theme-live-codeblock'],
// ...
};
要使用该插件,请创建一个代码块,并在语言元字符串中附加 live
。
```jsx live
function Clock(props) {
const [date, setDate] = useState(new Date());
useEffect(() => {
const timerID = setInterval(() => tick(), 1000);
return function cleanup() {
clearInterval(timerID);
};
});
function tick() {
setDate(new Date());
}
return (
<div>
<h2>It is {date.toLocaleTimeString()}.</h2>
</div>
);
}
```
代码块将被渲染为一个交互式编辑器。代码的更改将实时反映在结果面板上。
function Clock(props) { const [date, setDate] = useState(new Date()); useEffect(() => { const timerID = setInterval(() => tick(), 1000); return function cleanup() { clearInterval(timerID); }; }); function tick() { setDate(new Date()); } return ( <div> <h2>It is {date.toLocaleTimeString()}.</h2> </div> ); }
导入
无法直接从 react-live 代码编辑器导入组件,您必须预先定义可用的导入。
默认情况下,所有 React 导入都可用。如果您需要更多可用的导入,请调整 react-live 作用域
- npm
- Yarn
- pnpm
npm run swizzle @docusaurus/theme-live-codeblock ReactLiveScope -- --eject
yarn swizzle @docusaurus/theme-live-codeblock ReactLiveScope --eject
pnpm run swizzle @docusaurus/theme-live-codeblock ReactLiveScope --eject
import React from 'react';
const ButtonExample = (props) => (
<button
{...props}
style={{
backgroundColor: 'white',
color: 'black',
border: 'solid red',
borderRadius: 20,
padding: 10,
cursor: 'pointer',
...props.style,
}}
/>
);
// Add react-live imports you need here
const ReactLiveScope = {
React,
...React,
ButtonExample,
};
export default ReactLiveScope;
ButtonExample
组件现在可以使用了
function MyPlayground(props) { return ( <div> <ButtonExample onClick={() => alert('hey!')}>Click me</ButtonExample> </div> ); }
命令式渲染 (noInline)
当您的代码跨越多个组件或变量时,应使用 noInline
选项来避免错误。
```jsx live noInline
const project = 'Docusaurus';
const Greeting = () => <p>Hello {project}!</p>;
render(<Greeting />);
```
与普通的交互式代码块不同,使用 noInline
时,React Live 不会将您的代码包装在内联函数中进行渲染。
您需要在代码末尾显式调用 render()
以显示输出。
const project = "Docusaurus"; const Greeting = () => ( <p>Hello {project}!</p> ); render( <Greeting /> );
在代码块中使用 JSX 标记
Markdown 中的代码块始终将其内容保留为纯文本,这意味着您无法执行以下操作
type EditUrlFunction = (params: {
// This doesn't turn into a link (for good reason!)
version: <a href="/docs/versioning">Version</a>;
versionDocsDirPath: string;
docPath: string;
permalink: string;
locale: string;
}) => string | undefined;
如果要嵌入 HTML 标记(如锚链接或粗体),可以使用 <pre>
标签、<code>
标签或 <CodeBlock>
组件。
<pre>
<b>Input: </b>1 2 3 4{'\n'}
<b>Output: </b>"366300745"{'\n'}
</pre>
Input: 1 2 3 4 Output: "366300745"
MDX 与 JSX 的行为一致:换行符(即使在 <pre>
内部)也会转换为空格。您必须显式编写换行符才能将其打印出来。
语法高亮仅适用于普通字符串。Docusaurus 不会尝试解析包含 JSX 子元素的代码块内容。
多语言支持代码块
使用 MDX,您可以轻松地在文档中创建交互式组件,例如,以多种编程语言显示代码,并使用选项卡组件在它们之间切换。
我们没有为多语言支持代码块实现专用的组件,而是在经典主题中实现了一个通用的 <Tabs>
组件,以便您也可以将其用于其他非代码场景。
以下示例说明如何在文档中使用多语言代码选项卡。请注意,每个语言块上方和下方的空行是**有意**的。这是 MDX 的当前限制:您必须在 Markdown 语法周围留出空行,以便 MDX 解析器知道它是 Markdown 语法而不是 JSX。
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
<Tabs>
<TabItem value="js" label="JavaScript">
```js
function helloWorld() {
console.log('Hello, world!');
}
```
</TabItem>
<TabItem value="py" label="Python">
```py
def hello_world():
print("Hello, world!")
```
</TabItem>
<TabItem value="java" label="Java">
```java
class HelloWorld {
public static void main(String args[]) {
System.out.println("Hello, World");
}
}
```
</TabItem>
</Tabs>
您将获得以下结果
- JavaScript
- Python
- Java
function helloWorld() {
console.log('Hello, world!');
}
def hello_world():
print("Hello, world!")
class HelloWorld {
public static void main(String args[]) {
System.out.println("Hello, World");
}
}
如果您有多个这样的多语言代码选项卡,并且希望在选项卡实例之间同步选择,请参阅 同步选项卡选择部分。
Docusaurus npm2yarn remark 插件
以 npm 和 Yarn 两种方式显示 CLI 命令是一种非常常见的需求,例如
- npm
- Yarn
- pnpm
npm install @docusaurus/remark-plugin-npm2yarn
yarn add @docusaurus/remark-plugin-npm2yarn
pnpm add @docusaurus/remark-plugin-npm2yarn
Docusaurus 开箱即用地提供了这样的实用程序,使您无需每次都使用 Tabs
组件。要启用此功能,首先像上面一样安装 @docusaurus/remark-plugin-npm2yarn
包,然后在 docusaurus.config.js
中,对于需要此功能的插件(doc、blog、pages 等),在 remarkPlugins
选项中注册它。(有关配置格式的更多详细信息,请参阅 文档配置)
export default {
// ...
presets: [
[
'@docusaurus/preset-classic',
{
docs: {
remarkPlugins: [
[require('@docusaurus/remark-plugin-npm2yarn'), {sync: true}],
],
},
pages: {
remarkPlugins: [require('@docusaurus/remark-plugin-npm2yarn')],
},
blog: {
remarkPlugins: [
[
require('@docusaurus/remark-plugin-npm2yarn'),
{converters: ['pnpm']},
],
],
// ...
},
},
],
],
};
然后通过在代码块中添加 npm2yarn
键来使用它
```bash npm2yarn
npm install @docusaurus/remark-plugin-npm2yarn
```
配置
选项 | 类型 | 默认值 | 描述 |
---|---|---|---|
sync | 布尔值 | false | 是否在所有代码块之间同步选定的转换器。 |
converters | 数组 | 'yarn' 、'pnpm' | 要使用的转换器列表。转换器的顺序很重要,因为第一个转换器将用作默认选择。 |
在 JSX 中使用
在 Markdown 之外,您可以使用 @theme/CodeBlock
组件获得相同的输出。
import CodeBlock from '@theme/CodeBlock';
export default function MyReactPage() {
return (
<div>
<CodeBlock
language="jsx"
title="/src/components/HelloCodeTitle.js"
showLineNumbers>
{`function HelloCodeTitle(props) {
return <h1>Hello, {props.name}</h1>;
}`}
</CodeBlock>
</div>
);
}
function HelloCodeTitle(props) {
return <h1>Hello, {props.name}</h1>;
}
接受的 props 与编写 Markdown 代码块的方式相同,包括 language
、title
和 showLineNumbers
。
尽管不建议这样做,但您也可以传入 metastring
prop,例如 metastring='{1-2} title="/src/components/HelloCodeTitle.js" showLineNumbers'
,这是 Markdown 代码块在后台处理的方式。但是,我们建议您 使用注释突出显示行。
如 前面所述,仅当子元素为简单字符串时才会应用语法高亮。