mirror of
https://github.com/facebook/docusaurus.git
synced 2025-04-28 09:47:48 +02:00
Co-authored-by: sebastien <lorber.sebastien@gmail.com> Co-authored-by: Chas Emerick <chas@cemerick.com>
416 lines
18 KiB
Text
416 lines
18 KiB
Text
---
|
|
sidebar_position: 2
|
|
slug: /api/plugins/@docusaurus/plugin-content-blog
|
|
---
|
|
|
|
# 📦 plugin-content-blog
|
|
|
|
import APITable from '@site/src/components/APITable';
|
|
|
|
Provides the [Blog](blog.mdx) feature and is the default blog plugin for Docusaurus.
|
|
|
|
:::warning some features production only
|
|
|
|
The [feed feature](../../blog.mdx#feed) works by extracting the build output, and is **only active in production**.
|
|
|
|
:::
|
|
|
|
## Installation {#installation}
|
|
|
|
```bash npm2yarn
|
|
npm install --save @docusaurus/plugin-content-blog
|
|
```
|
|
|
|
:::tip
|
|
|
|
If you use the preset `@docusaurus/preset-classic`, you don't need to install this plugin as a dependency.
|
|
|
|
You can configure this plugin through the [preset options](../../using-plugins.mdx#docusauruspreset-classic).
|
|
|
|
:::
|
|
|
|
## Configuration {#configuration}
|
|
|
|
Accepted fields:
|
|
|
|
```mdx-code-block
|
|
<APITable>
|
|
```
|
|
|
|
| Name | Type | Default | Description |
|
|
| --- | --- | --- | --- |
|
|
| `path` | `string` | `'blog'` | Path to the blog content directory on the file system, relative to site dir. |
|
|
| `editUrl` | <code>string \| [EditUrlFn](#EditUrlFn)</code> | `undefined` | Base URL to edit your site. The final URL is computed by `editUrl + relativePostPath`. Using a function allows more nuanced control for each file. Omitting this variable entirely will disable edit links. |
|
|
| `editLocalizedFiles` | `boolean` | `false` | The edit URL will target the localized file, instead of the original unlocalized file. Ignored when `editUrl` is a function. |
|
|
| `blogTitle` | `string` | `'Blog'` | Blog page title for better SEO. |
|
|
| `blogDescription` | `string` | `'Blog'` | Blog page meta description for better SEO. |
|
|
| `blogSidebarCount` | <code>number \| 'ALL'</code> | `5` | Number of blog post elements to show in the blog sidebar. `'ALL'` to show all blog posts; `0` to disable. |
|
|
| `blogSidebarTitle` | `string` | `'Recent posts'` | Title of the blog sidebar. |
|
|
| `routeBasePath` | `string` | `'blog'` | URL route for the blog section of your site. **DO NOT** include a trailing slash. Use `/` to put the blog at root path. |
|
|
| `tagsBasePath` | `string` | `'tags'` | URL route for the tags section of your blog. Will be appended to `routeBasePath`. |
|
|
| `pageBasePath` | `string` | `'page'` | URL route for the pages section of your blog. Will be appended to `routeBasePath`. |
|
|
| `archiveBasePath` | <code>string \| null</code> | `'archive'` | URL route for the archive section of your blog. Will be appended to `routeBasePath`. **DO NOT** include a trailing slash. Use `null` to disable generation of archive. |
|
|
| `authorsBasePath` | `string` | `'authors'` | URL route for the authors pages of your blog. Will be appended to `path`. |
|
|
| `include` | `string[]` | `['**/*.{md,mdx}']` | Array of glob patterns matching Markdown files to be built, relative to the content path. |
|
|
| `exclude` | `string[]` | _See example configuration_ | Array of glob patterns matching Markdown files to be excluded. Serves as refinement based on the `include` option. |
|
|
| `postsPerPage` | <code>number \| 'ALL'</code> | `10` | Number of posts to show per page in the listing page. Use `'ALL'` to display all posts on one listing page. |
|
|
| `blogListComponent` | `string` | `'@theme/BlogListPage'` | Root component of the blog listing page. |
|
|
| `blogPostComponent` | `string` | `'@theme/BlogPostPage'` | Root component of each blog post page. |
|
|
| `blogTagsListComponent` | `string` | `'@theme/BlogTagsListPage'` | Root component of the tags list page. |
|
|
| `blogTagsPostsComponent` | `string` | `'@theme/BlogTagsPostsPage'` | Root component of the "posts containing tag" page. |
|
|
| `blogArchiveComponent` | `string` | `'@theme/BlogArchivePage'` | Root component of the blog archive page. |
|
|
| `blogAuthorsPostsComponent` | `string` | `'@theme/Blog/Pages/BlogAuthorsPostsPage'` | Root component of the blog author page. |
|
|
| `blogAuthorsListComponent` | `string` | `'@theme/Blog/Pages/BlogAuthorsListPage'` | Root component of the blog authors page index. |
|
|
| `remarkPlugins` | `any[]` | `[]` | Remark plugins passed to MDX. |
|
|
| `rehypePlugins` | `any[]` | `[]` | Rehype plugins passed to MDX. |
|
|
| `rehypePlugins` | `any[]` | `[]` | Recma plugins passed to MDX. |
|
|
| `beforeDefaultRemarkPlugins` | `any[]` | `[]` | Custom Remark plugins passed to MDX before the default Docusaurus Remark plugins. |
|
|
| `beforeDefaultRehypePlugins` | `any[]` | `[]` | Custom Rehype plugins passed to MDX before the default Docusaurus Rehype plugins. |
|
|
| `truncateMarker` | `RegExp` | `/<!--\s*truncate\s*-->/` \| `\{\/\*\s*truncate\s*\*\/\}/` | Truncate marker marking where the summary ends. |
|
|
| `showReadingTime` | `boolean` | `true` | Show estimated reading time for the blog post. |
|
|
| `readingTime` | `ReadingTimeFn` | The default reading time | A callback to customize the reading time number displayed. |
|
|
| `authorsMapPath` | `string` | `'authors.yml'` | Path to the authors map file, relative to the blog content directory. |
|
|
| `feedOptions` | _See below_ | `{type: ['rss', 'atom']}` | Blog feed. |
|
|
| `feedOptions.type` | <code>[FeedType](#FeedType) \| [FeedType](#FeedType)[] \| 'all' \| null</code> | **Required** | Type of feed to be generated. Use `null` to disable generation. |
|
|
| `feedOptions.createFeedItems` | <code>[CreateFeedItemsFn](#CreateFeedItemsFn) \| undefined</code> | `undefined` | An optional function which can be used to transform and / or filter the items in the feed. |
|
|
| `feedOptions.limit` | `number \| null \| false` | `20` | Limits the feed to the specified number of posts, `false` or `null` for all entries. Defaults to `20`. |
|
|
| `feedOptions.title` | `string` | `siteConfig.title` | Title of the feed. |
|
|
| `feedOptions.description` | `string` | <code>\`$\{siteConfig.title} Blog\`</code> | Description of the feed. |
|
|
| `feedOptions.copyright` | `string` | `undefined` | Copyright message. |
|
|
| `feedOptions.xslt` | <code>boolean \| [FeedXSLTOptions](#FeedXSLTOptions)</code> | `undefined` | Permits to style the blog XML feeds with XSLT so that browsers render them nicely. |
|
|
| `feedOptions.language` | `string` (See [documentation](http://www.w3.org/TR/REC-html40/struct/dirlang.html#langcodes) for possible values) | `undefined` | Language metadata of the feed. |
|
|
| `sortPosts` | <code>'descending' \| 'ascending' </code> | `'descending'` | Governs the direction of blog post sorting. |
|
|
| `processBlogPosts` | <code>[ProcessBlogPostsFn](#ProcessBlogPostsFn)</code> | `undefined` | An optional function which can be used to transform blog posts (filter, modify, delete, etc...). |
|
|
| `showLastUpdateAuthor` | `boolean` | `false` | Whether to display the author who last updated the blog post. |
|
|
| `showLastUpdateTime` | `boolean` | `false` | Whether to display the last date the blog post was updated. This requires access to git history during the build, so will not work correctly with shallow clones (a common default for CI systems). With GitHub `actions/checkout`, use`fetch-depth: 0`. |
|
|
| `tags` | `string \| false \| null \| undefined` | `tags.yml` | Path to the YAML tags file listing pre-defined tags. Relative to the blog content directory. |
|
|
| `onInlineTags` | `'ignore' \| 'log' \| 'warn' \| 'throw'` | `warn` | The plugin behavior when blog posts contain inline tags (not appearing in the list of pre-defined tags, usually `tags.yml`). |
|
|
| `onUntruncatedBlogPosts` | `'ignore' \| 'log' \| 'warn' \| 'throw'` | `warn` | The plugin behavior when blog posts do not contain a truncate marker. |
|
|
|
|
```mdx-code-block
|
|
</APITable>
|
|
```
|
|
|
|
### Types {#types}
|
|
|
|
#### `EditUrlFn` {#EditUrlFn}
|
|
|
|
```ts
|
|
type EditUrlFunction = (params: {
|
|
blogDirPath: string;
|
|
blogPath: string;
|
|
permalink: string;
|
|
locale: string;
|
|
}) => string | undefined;
|
|
```
|
|
|
|
#### `ReadingTimeFn` {#ReadingTimeFn}
|
|
|
|
```ts
|
|
type ReadingTimeOptions = {
|
|
wordsPerMinute: number;
|
|
wordBound: (char: string) => boolean;
|
|
};
|
|
|
|
type ReadingTimeCalculator = (params: {
|
|
content: string;
|
|
frontMatter?: BlogPostFrontMatter & Record<string, unknown>;
|
|
options?: ReadingTimeOptions;
|
|
}) => number;
|
|
|
|
type ReadingTimeFn = (params: {
|
|
content: string;
|
|
frontMatter: BlogPostFrontMatter & Record<string, unknown>;
|
|
defaultReadingTime: ReadingTimeCalculator;
|
|
}) => number | undefined;
|
|
```
|
|
|
|
#### `FeedType` {#FeedType}
|
|
|
|
```ts
|
|
type FeedType = 'rss' | 'atom' | 'json';
|
|
```
|
|
|
|
#### `FeedXSLTOptions` {#FeedXSLTOptions}
|
|
|
|
Permits to style the blog XML feeds so that browsers render them nicely with [XSLT](https://developer.mozilla.org/en-US/docs/Web/XSLT).
|
|
|
|
- Use `true` to let the blog use its built-in `.xsl` and `.css` files to style the blog feed
|
|
- Use a falsy value (`undefined | null | false`) to disable the feature
|
|
- Use a `string` to provide a file path to a custom `.xsl` file relative to the blog content folder. By convention, you must provide a `.css` file with the exact same name.
|
|
|
|
```ts
|
|
type FeedXSLTOptions =
|
|
| boolean
|
|
| undefined
|
|
| null
|
|
| {
|
|
rss?: string | boolean | null | undefined;
|
|
atom?: string | boolean | null | undefined;
|
|
};
|
|
```
|
|
|
|
#### `CreateFeedItemsFn` {#CreateFeedItemsFn}
|
|
|
|
```ts
|
|
type CreateFeedItemsFn = (params: {
|
|
blogPosts: BlogPost[];
|
|
siteConfig: DocusaurusConfig;
|
|
outDir: string;
|
|
defaultCreateFeedItemsFn: CreateFeedItemsFn;
|
|
}) => Promise<BlogFeedItem[]>;
|
|
```
|
|
|
|
#### `ProcessBlogPostsFn` {#ProcessBlogPostsFn}
|
|
|
|
```ts
|
|
type ProcessBlogPostsFn = (params: {
|
|
blogPosts: BlogPost[];
|
|
}) => Promise<void | BlogPost[]>;
|
|
```
|
|
|
|
### Example configuration {#ex-config}
|
|
|
|
You can configure this plugin through preset options or plugin options.
|
|
|
|
:::tip
|
|
|
|
Most Docusaurus users configure this plugin through the preset options.
|
|
|
|
:::
|
|
|
|
```js config-tabs
|
|
// Preset Options: blog
|
|
// Plugin Options: @docusaurus/plugin-content-blog
|
|
|
|
const config = {
|
|
path: 'blog',
|
|
// Simple use-case: string editUrl
|
|
// editUrl: 'https://github.com/facebook/docusaurus/edit/main/website/',
|
|
// Advanced use-case: functional editUrl
|
|
editUrl: ({locale, blogDirPath, blogPath, permalink}) =>
|
|
`https://github.com/facebook/docusaurus/edit/main/website/${blogDirPath}/${blogPath}`,
|
|
editLocalizedFiles: false,
|
|
blogTitle: 'Blog title',
|
|
blogDescription: 'Blog',
|
|
blogSidebarCount: 5,
|
|
blogSidebarTitle: 'All our posts',
|
|
routeBasePath: 'blog',
|
|
include: ['**/*.{md,mdx}'],
|
|
exclude: [
|
|
'**/_*.{js,jsx,ts,tsx,md,mdx}',
|
|
'**/_*/**',
|
|
'**/*.test.{js,jsx,ts,tsx}',
|
|
'**/__tests__/**',
|
|
],
|
|
postsPerPage: 10,
|
|
blogListComponent: '@theme/BlogListPage',
|
|
blogPostComponent: '@theme/BlogPostPage',
|
|
blogTagsListComponent: '@theme/BlogTagsListPage',
|
|
blogTagsPostsComponent: '@theme/BlogTagsPostsPage',
|
|
remarkPlugins: [require('./my-remark-plugin')],
|
|
rehypePlugins: [],
|
|
beforeDefaultRemarkPlugins: [],
|
|
beforeDefaultRehypePlugins: [],
|
|
truncateMarker: /<!--\s*(truncate)\s*-->/,
|
|
showReadingTime: true,
|
|
feedOptions: {
|
|
type: '',
|
|
title: '',
|
|
description: '',
|
|
copyright: '',
|
|
language: undefined,
|
|
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,
|
|
});
|
|
},
|
|
},
|
|
};
|
|
```
|
|
|
|
## Markdown front matter {#markdown-front-matter}
|
|
|
|
Markdown documents can use the following Markdown [front matter](../../guides/markdown-features/markdown-features-intro.mdx#front-matter) metadata fields, enclosed by a line `---` on either side.
|
|
|
|
Accepted fields:
|
|
|
|
```mdx-code-block
|
|
<APITable>
|
|
```
|
|
|
|
| Name | Type | Default | Description |
|
|
| --- | --- | --- | --- |
|
|
| `authors` | `Authors` | `undefined` | List of blog post authors (or unique author). Read the [`authors` guide](../../blog.mdx#blog-post-authors) for more explanations. Prefer `authors` over the `author_*` front matter fields, even for single author blog posts. |
|
|
| `author` | `string` | `undefined` | ⚠️ Prefer using `authors`. The blog post author's name. |
|
|
| `author_url` | `string` | `undefined` | ⚠️ Prefer using `authors`. The URL that the author's name will be linked to. This could be a GitHub, X, Facebook profile URL, etc. |
|
|
| `author_image_url` | `string` | `undefined` | ⚠️ Prefer using `authors`. The URL to the author's thumbnail image. |
|
|
| `author_title` | `string` | `undefined` | ⚠️ Prefer using `authors`. A description of the author. |
|
|
| `title` | `string` | Markdown title | The blog post title. |
|
|
| `sidebar_label` | `string` | `title` | A custom label for the blog sidebar, replacing the default one (`title`). |
|
|
| `date` | `string` | File name or file creation time | The blog post creation date. If not specified, this can be extracted from the file or folder name, e.g, `2021-04-15-blog-post.mdx`, `2021-04-15-blog-post/index.mdx`, `2021/04/15/blog-post.mdx`. Otherwise, it is the Markdown file creation time. |
|
|
| `tags` | `Tag[]` | `undefined` | A list of strings or objects of two string fields `label` and `permalink` to tag to your post. Strings can be a reference to keys of a [tags file](#tags-file) (usually `tags.yml`) |
|
|
| `draft` | `boolean` | `false` | Draft blog posts will only be available during development. |
|
|
| `unlisted` | `boolean` | `false` | Unlisted blog posts will be available in both development and production. They will be "hidden" in production, not indexed, excluded from sitemaps, and can only be accessed by users having a direct link. |
|
|
| `hide_table_of_contents` | `boolean` | `false` | Whether to hide the table of contents to the right. |
|
|
| `toc_min_heading_level` | `number` | `2` | The minimum heading level shown in the table of contents. Must be between 2 and 6 and lower or equal to the max value. |
|
|
| `toc_max_heading_level` | `number` | `3` | The max heading level shown in the table of contents. Must be between 2 and 6. |
|
|
| `keywords` | `string[]` | `undefined` | Keywords meta tag, which will become the `<meta name="keywords" content="keyword1,keyword2,..."/>` in `<head>`, used by search engines. |
|
|
| `description` | `string` | The first line of Markdown content | The description of your document, which will become the `<meta name="description" content="..."/>` and `<meta property="og:description" content="..."/>` in `<head>`, used by search engines. |
|
|
| `image` | `string` | `undefined` | Cover or thumbnail image that will be used as the `<meta property="og:image" content="..."/>` in the `<head>`, enhancing link previews on social media and messaging platforms. |
|
|
| `slug` | `string` | File path | Allows to customize the blog post URL (`/<routeBasePath>/<slug>`). Support multiple patterns: `slug: my-blog-post`, `slug: /my/path/to/blog/post`, slug: `/`. |
|
|
| `last_update` | `FrontMatterLastUpdate` | `undefined` | Allows overriding the last update author/date. Date can be any [parsable date string](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/parse). |
|
|
|
|
```mdx-code-block
|
|
</APITable>
|
|
```
|
|
|
|
```ts
|
|
type FrontMatterLastUpdate = {date?: string; author?: string};
|
|
|
|
type Tag = string | {label: string; permalink: string};
|
|
|
|
// An author key references an author from the global plugin authors.yml file
|
|
type AuthorKey = string;
|
|
|
|
// Social platform name -> Social platform link
|
|
// Example: {MyPlatform: 'https://myplatform.com/myusername'}
|
|
// Pre-defined platforms
|
|
// ("x", "github", "twitter", "linkedin", "stackoverflow", "instagram", "bluesky", "mastodon", "threads", "twitch", "youtube") accept handles:
|
|
// Example: {github: 'slorber'}
|
|
type AuthorSocials = Record<string, string>;
|
|
|
|
type Author = {
|
|
key?: AuthorKey;
|
|
name: string;
|
|
title?: string;
|
|
url?: string;
|
|
image_url?: string;
|
|
socials?: AuthorSocials;
|
|
};
|
|
|
|
// The front matter authors field allows various possible shapes
|
|
type Authors = AuthorKey | Author | (AuthorKey | Author)[];
|
|
```
|
|
|
|
Example:
|
|
|
|
```md
|
|
---
|
|
title: Welcome Docusaurus
|
|
authors:
|
|
- slorber
|
|
- yangshun
|
|
- 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
|
|
tags: [docusaurus]
|
|
description: This is my first post on Docusaurus.
|
|
image: https://i.imgur.com/mErPwqL.png
|
|
hide_table_of_contents: false
|
|
---
|
|
|
|
A Markdown blog post
|
|
```
|
|
|
|
import TagsFileApiRefSection from './_partial-tags-file-api-ref-section.mdx';
|
|
|
|
<TagsFileApiRefSection />
|
|
|
|
## Authors File {#authors-file}
|
|
|
|
Use the [`authors` plugin option](#authors) to configure the path of a YAML authors file.
|
|
|
|
By convention, the plugin will look for a `authors.yml` file at the root of your blog content folder(s).
|
|
|
|
This file can contain a list of predefined [global blog authors](../../blog.mdx#global-authors). You can reference these authors by their keys in Markdown files thanks to the [`authors` front matter](#markdown-front-matter).
|
|
|
|
### Types {#authors-file-types}
|
|
|
|
The YAML content of the provided authors file should respect the following shape:
|
|
|
|
```tsx
|
|
type AuthorsMapInput = {
|
|
[authorKey: string]: AuthorInput;
|
|
};
|
|
|
|
type AuthorInput = {
|
|
name?: string;
|
|
title?: string;
|
|
description?: string;
|
|
imageURL?: string;
|
|
url?: string;
|
|
email?: string;
|
|
page?: boolean | {permalink: string};
|
|
socials?: Record<string, string>;
|
|
[customAuthorAttribute: string]: unknown;
|
|
};
|
|
```
|
|
|
|
### Example {#authors-file-example}
|
|
|
|
```yml title="tags.yml"
|
|
slorber:
|
|
name: Sébastien Lorber
|
|
title: Docusaurus maintainer
|
|
url: https://sebastienlorber.com
|
|
image_url: https://github.com/slorber.png
|
|
page: true
|
|
socials:
|
|
x: sebastienlorber
|
|
github: slorber
|
|
|
|
jmarcey:
|
|
name: Joel Marcey
|
|
title: Co-creator of Docusaurus 1
|
|
url: https://github.com/JoelMarcey
|
|
image_url: https://github.com/JoelMarcey.png
|
|
email: jimarcey@gmail.com
|
|
page:
|
|
permalink: '/joel-marcey'
|
|
socials:
|
|
x: joelmarcey
|
|
github: JoelMarcey
|
|
```
|
|
|
|
```md title="blog/my-blog-post.md"
|
|
---
|
|
authors: [slorber, jmarcey]
|
|
---
|
|
|
|
# My Blog Post
|
|
|
|
Content
|
|
```
|
|
|
|
## i18n {#i18n}
|
|
|
|
Read the [i18n introduction](../../i18n/i18n-introduction.mdx) first.
|
|
|
|
### Translation files location {#translation-files-location}
|
|
|
|
- **Base path**: `website/i18n/[locale]/docusaurus-plugin-content-blog`
|
|
- **Multi-instance path**: `website/i18n/[locale]/docusaurus-plugin-content-blog-[pluginId]`
|
|
- **JSON files**: extracted with [`docusaurus write-translations`](../../cli.mdx#docusaurus-write-translations-sitedir)
|
|
- **Markdown files**: `website/i18n/[locale]/docusaurus-plugin-content-blog`
|
|
|
|
### Example file-system structure {#example-file-system-structure}
|
|
|
|
```bash
|
|
website/i18n/[locale]/docusaurus-plugin-content-blog
|
|
│
|
|
│ # translations for website/blog
|
|
├── authors.yml
|
|
├── first-blog-post.md
|
|
├── second-blog-post.md
|
|
│
|
|
│ # translations for the plugin options that will be rendered
|
|
└── options.json
|
|
```
|