diff --git a/docs/en/next/blog.html b/docs/en/next/blog.html index d196ddebcf..ccbb502462 100644 --- a/docs/en/next/blog.html +++ b/docs/en/next/blog.html @@ -100,6 +100,12 @@
Example:
blogSidebarCount: 'ALL';
+You can configure a specific sidebar title by adding a blogSidebarTitle
setting to your siteConfig.js
.
The option is an object which can have the keys default
and all
. Specifying a value for default
allows you to change the default sidebar title. Specifying a value for all
allows you to change the sidebar title when the blogSidebarCount
option is set to 'ALL'
.
Example:
+blogSidebarTitle: { default: 'Recent posts', all: 'All blog posts' },
+
Docusaurus provides a simple RSS feed for your blog posts. Both RSS and Atom feed formats are supported. This data is automatically to your website page's HTML
tag.A summary of the post's text is provided in the RSS feed up to the <!--truncate-->
. If no <!--truncate-->
tag is found, then all text up 250 characters are used.