跳至主要内容
版本:3.5.2

博客

博客功能使您能够立即部署一个功能齐全的博客。

信息

查看博客插件 API 参考文档以获取选项的完整列表。

初始设置

要设置站点的博客,首先创建一个 blog 目录。

然后,在 docusaurus.config.js 中添加指向博客的项目链接

docusaurus.config.js
export default {
themeConfig: {
// ...
navbar: {
items: [
// ...
{to: 'blog', label: 'Blog', position: 'left'}, // or position: 'right'
],
},
},
};

添加文章

要在博客中发布,请在博客目录中创建一个 Markdown 文件。

例如,在 website/blog/2019-09-05-hello-docusaurus.md 创建一个文件

website/blog/2019-09-05-hello-docusaurus.md
---
title: Welcome Docusaurus
description: This is my first post on Docusaurus.
slug: welcome-docusaurus-v2
authors:
- name: Joel Marcey
title: Co-creator of Docusaurus 1
url: https://github.com/JoelMarcey
image_url: https://github.com/JoelMarcey.png
socials:
x: joelmarcey
github: JoelMarcey
- name: Sébastien Lorber
title: Docusaurus maintainer
url: https://sebastienlorber.com
image_url: https://github.com/slorber.png
socials:
x: sebastienlorber
github: slorber
tags: [hello, docusaurus-v2]
image: https://i.imgur.com/mErPwqL.png
hide_table_of_contents: false
---

Welcome to this blog. This blog is created with [**Docusaurus 2**](https://docusaurus.org.cn/).

<!-- truncate -->

This is my first post on Docusaurus 2.

A whole bunch of exploration to follow.

前置 matter 用于向博客文章添加更多元数据,例如作者信息,但 Docusaurus 能够在没有前置 matter 的情况下推断所有必要的元数据。有关所有可能的字段,请参阅API 文档

博客列表

博客的索引页面(默认情况下,位于 /blog)是博客列表页面,所有博客文章都集中显示在此页面上。

在您的博客文章中使用 <!--truncate--> 标记来表示在查看所有已发布的博客文章时将显示的内容摘要。<!--truncate--> 上面的任何内容都将成为摘要的一部分。请注意,截断标记上方的部分必须是独立可渲染的 Markdown。例如

website/blog/my-post.md
---
title: Markdown blog truncation example
---

All these will be part of the blog post summary.

<!-- truncate -->

But anything from here on down will not be.

对于使用 .mdx 扩展名的文件,请改用 MDX 注释 {/* truncate */}

website/blog/my-post.mdx
---
title: MDX blog truncation Example
---

All these will be part of the blog post summary.

{/* truncate */}

But anything from here on down will not be.

默认情况下,每个博客列表页面上显示 10 篇文章,但您可以使用插件配置中的 postsPerPage 选项控制分页。如果您将 postsPerPage: 'ALL' 设置为,则分页将被禁用,所有文章都将显示在第一页上。您还可以为博客列表页面添加元描述以获得更好的 SEO

docusaurus.config.js
export default {
// ...
presets: [
[
'@docusaurus/preset-classic',
{
blog: {
blogTitle: 'Docusaurus blog!',
blogDescription: 'A Docusaurus powered blog!',
postsPerPage: 'ALL',
},
},
],
],
};

博客侧边栏

博客侧边栏显示最近的博客文章。显示的默认项目数为 5,但您可以使用插件配置中的 blogSidebarCount 选项进行自定义。通过设置 blogSidebarCount: 0,侧边栏将完全禁用,容器也将被移除。这将增加主容器的宽度。特别是,如果您已将 blogSidebarCount: 'ALL' 设置为,则将显示所有文章。

您还可以使用 blogSidebarTitle 选项更改侧边栏标题文本。例如,如果您已将 blogSidebarCount: 'ALL' 设置为,则您可能希望将其改为“所有文章”,而不是默认的“最近文章”

docusaurus.config.js
export default {
presets: [
[
'@docusaurus/preset-classic',
{
blog: {
blogSidebarTitle: 'All posts',
blogSidebarCount: 'ALL',
},
},
],
],
};

博客文章日期

Docusaurus 将从许多模式(例如 YYYY-MM-DD-my-blog-post-title.mdYYYY/MM/DD/my-blog-post-title.md)中提取 YYYY-MM-DD 日期。这使您能够轻松地按年、按月对博客文章进行分组,或使用扁平结构。

支持的日期提取模式
模式示例
单个文件2021-05-28-my-blog-post-title.md
MDX 文件2021-05-28-my-blog-post-title.mdx
单个文件夹 + index.md2021-05-28-my-blog-post-title/index.md
文件夹按日期命名2021-05-28/my-blog-post-title.md
嵌套文件夹按日期命名2021/05/28/my-blog-post-title.md
部分嵌套文件夹按日期命名2021/05-28-my-blog-post-title.md
嵌套文件夹 + index.md2021/05/28/my-blog-post-title/index.md
路径中间的日期category/2021/05-28-my-blog-post-title.md

Docusaurus 可以使用上述任何命名模式从文章中提取日期。建议选择一种模式并将其应用于所有文章,以避免混淆。

提示

使用文件夹可以方便地将博客文章图像与 Markdown 文件放在一起。

此命名约定是可选的,您也可以提供日期作为前置 matter。由于前置 matter 遵循 YAML 语法,其中支持日期时间表示法,因此如果您需要更细粒度的发布日期,则可以使用前置 matter。例如,如果您在同一天发布了多篇文章,则可以根据一天中的时间对其进行排序

earlier-post.md
---
date: 2021-09-13T10:00
---
later-post.md
---
date: 2021-09-13T18:00
---

博客文章作者

使用 authors 前置 matter 字段声明博客文章作者。作者至少应具有 nameimage_url。Docusaurus 使用 urlemailtitle 等信息,但允许任何其他信息。

内联作者

博客文章作者可以直接在 front matter 中声明

my-blog-post.md
---
authors:
name: Joel Marcey
title: Co-creator of Docusaurus 1
url: https://github.com/JoelMarcey
image_url: https://github.com/JoelMarcey.png
email: [email protected]
socials:
x: joelmarcey
github: JoelMarcey
---
提示

此选项最适合入门或非正式的不定期作者。

信息

建议使用 authors 前置 matter,但旧版 author_* 前置 matter 仍受支持

my-blog-post.md
---
author: Joel Marcey
author_title: Co-creator of Docusaurus 1
author_url: https://github.com/JoelMarcey
author_image_url: https://github.com/JoelMarcey.png
---

全局作者

对于定期的博客文章作者,在每篇博客文章中维护作者信息可能很繁琐。

可以在配置文件中全局声明这些作者

website/blog/authors.yml
jmarcey:
name: Joel Marcey
title: Co-creator of Docusaurus 1
url: https://github.com/JoelMarcey
image_url: https://github.com/JoelMarcey.png
email: [email protected]
socials:
x: joelmarcey
github: JoelMarcey

slorber:
name: Sébastien Lorber
title: Docusaurus maintainer
url: https://sebastienlorber.com
image_url: https://github.com/slorber.png
socials:
x: sebastienlorber
github: slorber
提示

使用 authorsMapPath 插件选项配置路径。JSON 也受支持。

在博客文章的前置 matter 中,您可以引用在全局配置文件中声明的作者

my-blog-post.md
---
authors: jmarcey
---
信息

authors 系统非常灵活,可以满足更高级的用例

混合内联作者和全局作者

您可以始终使用全局作者,并且仍然可以使用内联作者

my-blog-post.md
---
authors:
- jmarcey
- slorber
- name: Inline Author name
title: Inline Author Title
url: https://github.com/inlineAuthor
image_url: https://github.com/inlineAuthor
---
全局作者的本地覆盖

您可以根据每篇博客文章自定义全局作者的数据

my-blog-post.md
---
authors:
- key: jmarcey
title: Joel Marcey's new title
- key: slorber
name: Sébastien Lorber's new name
---
本地化作者的配置文件

配置文件可以本地化,只需在以下位置创建其本地化副本即可:

website/i18n/[locale]/docusaurus-plugin-content-blog/authors.yml

通过前置 matter 或作者映射声明的作者都需要名称或头像,或两者兼而有之。如果文章的所有作者都没有姓名,则 Docusaurus 将紧凑地显示其头像。请参阅此测试文章以了解效果。

Feed 生成

RSS Feed 要求为作者设置作者的电子邮件才能在 Feed 中显示。

作者页面

作者页面功能是可选的,主要用于多作者博客。

您可以通过在全局作者配置中为每个作者添加 page: true 属性来独立激活它

website/blog/authors.yml
slorber:
name: Sébastien Lorber
page: true # Turns the feature on - route will be /authors/slorber

jmarcey:
name: Joel Marcey
page:
# Turns the feature on - route will be /authors/custom-author-url
permalink: '/custom-author-url'

博客插件现在将生成

  • 每个作者的专用作者页面(示例)列出他们贡献的所有博客文章
  • 作者索引页面(示例)列出所有这些作者,其顺序与他们在 authors.yml 中出现的顺序相同
关于内联作者

只有全局作者可以激活此功能。内联作者不受支持。

博客文章标签

标签在 front matter 中声明,并引入另一个分类维度。

可以内联定义标签,也可以引用在tags 文件(可选,通常为 blog/tags.yml)中声明的预定义标签。

在以下示例中

  • docusaurus 引用在 blog/tags.yml 中声明的预定义标签键
  • Releases 是一个内联标签,因为它不存在于 blog/tags.yml
blog/my-post.md
---
title: 'My blog post'
tags:
- Releases
- docusaurus
---

Content
blog/tags.yml
docusaurus:
label: 'Docusaurus'
permalink: '/docusaurus'
description: 'Blog posts related to the Docusaurus framework'

阅读时间

Docusaurus 基于字数为每篇博客文章生成阅读时间估算。我们提供了一个自定义此选项的选项。

docusaurus.config.js
export default {
presets: [
[
'@docusaurus/preset-classic',
{
blog: {
showReadingTime: true, // When set to false, the "x min read" won't be shown
readingTime: ({content, frontMatter, defaultReadingTime}) =>
defaultReadingTime({content, options: {wordsPerMinute: 300}}),
},
},
],
],
};

readingTime 回调接收三个参数:博客内容文本(作为字符串)、前置 matter(作为字符串键及其值的记录)和默认阅读时间函数。它返回一个数字(以分钟为单位的阅读时间)或 undefined(禁用此页面的阅读时间)。

默认阅读时间可以接受其他选项:wordsPerMinute 作为数字(默认值:300),以及 wordBound 作为从字符串到布尔值的函数。如果传递给 wordBound 的字符串应该是一个词边界(默认情况下为空格、制表符和换行符),则该函数应返回 true

提示

使用回调函数来满足您的所有自定义需求。

在一个页面上禁用阅读时间

docusaurus.config.js
export default {
presets: [
[
'@docusaurus/preset-classic',
{
blog: {
showReadingTime: true,
readingTime: ({content, frontMatter, defaultReadingTime}) =>
frontMatter.hide_reading_time
? undefined
: defaultReadingTime({content}),
},
},
],
],
};

用法

---
hide_reading_time: true
---

This page will no longer display the reading time stats!

Feed

您可以通过传递 feedOptions 来生成 RSS/Atom/JSON Feed。默认情况下,会生成 RSS 和 Atom Feed。要禁用 Feed 生成,请将 feedOptions.type 设置为 null

type FeedType = 'rss' | 'atom' | 'json';

type BlogOptions = {
feedOptions?: {
type?: FeedType | 'all' | FeedType[] | null;
title?: string;
description?: string;
copyright: string;

language?: string; // possible values: http://www.w3.org/TR/REC-html40/struct/dirlang.html#langcodes
limit?: number | false | null; // defaults to 20
// XSLT permits browsers to style and render nicely the feed XML files
xslt?:
| boolean
| {
//
rss?: string | boolean;
atom?: string | boolean;
};
// Allow control over the construction of BlogFeedItems
createFeedItems?: (params: {
blogPosts: BlogPost[];
siteConfig: DocusaurusConfig;
outDir: string;
defaultCreateFeedItems: (params: {
blogPosts: BlogPost[];
siteConfig: DocusaurusConfig;
outDir: string;
}) => Promise<BlogFeedItem[]>;
}) => Promise<BlogFeedItem[]>;
};
};

示例用法

docusaurus.config.js
export default {
// ...
presets: [
[
'@docusaurus/preset-classic',
{
blog: {
feedOptions: {
type: 'all',
copyright: `Copyright © ${new Date().getFullYear()} Facebook, Inc.`,
createFeedItems: async (params) => {
const {blogPosts, defaultCreateFeedItems, ...rest} = params;
return defaultCreateFeedItems({
// keep only the 10 most recent blog posts in the feed
blogPosts: blogPosts.filter((item, index) => index < 10),
...rest,
});
},
},
},
},
],
],
};

Feed 可在以下位置找到:

https://example.com/blog/rss.xml

高级主题

仅博客模式

您可以运行您的 Docusaurus 站点,而无需专用的着陆页,而是将博客的帖子列表页面作为索引页面。将 routeBasePath 设置为 '/',以便通过根路由 example.com/ 而不是子路由 example.com/blog/ 提供博客服务。

docusaurus.config.js
export default {
// ...
presets: [
[
'@docusaurus/preset-classic',
{
docs: false, // Optional: disable the docs plugin
blog: {
routeBasePath: '/', // Serve the blog at the site's root
/* other blog options */
},
},
],
],
};
警告

不要忘记删除位于 ./src/pages/index.js 的现有主页,否则将有两个文件映射到相同的路由!

警告

如果禁用了文档插件,请不要忘记删除配置文件中其他地方对文档插件的引用。特别是,请确保删除与文档相关的导航栏项目。

提示

对于那些只想使用文档的用户,还有一个“仅文档模式”。阅读 仅文档模式 以获取详细说明或更详细的 routeBasePath 解释。

多个博客

默认情况下,经典主题假设每个网站只有一个博客,因此仅包含一个博客插件实例。如果您希望在一个网站上拥有多个博客,这也是可能的!您可以在 docusaurus.config.jsplugins 选项中指定另一个博客插件来添加另一个博客。

routeBasePath 设置为您希望访问第二个博客的 URL 路由。请注意,此处的 routeBasePath 必须与第一个博客不同,否则可能会发生路径冲突!此外,将 path 设置为包含第二个博客条目的目录的路径。

多实例插件 中所述,您需要为插件分配一个唯一的 ID。

docusaurus.config.js
export default {
// ...
plugins: [
[
'@docusaurus/plugin-content-blog',
{
/**
* Required for any multi-instance plugin
*/
id: 'second-blog',
/**
* URL route for the blog section of your site.
* *DO NOT* include a trailing slash.
*/
routeBasePath: 'my-second-blog',
/**
* Path to data on filesystem relative to site dir.
*/
path: './my-second-blog',
},
],
],
};

例如,我们在此处托管了第二个博客 here