mirror of
https://github.com/facebook/docusaurus.git
synced 2025-08-06 10:20:09 +02:00
Make blog plugin config example valid (#2300)
* Make blog plugin config example valid * Update using-plugins.md Co-authored-by: Alexey Pyltsyn <lex61rus@gmail.com>
This commit is contained in:
parent
d974aa9c2a
commit
6a1bc254cc
1 changed files with 3 additions and 3 deletions
|
@ -173,7 +173,7 @@ module.exports = {
|
||||||
/**
|
/**
|
||||||
* Truncate marker, can be a regex or string.
|
* Truncate marker, can be a regex or string.
|
||||||
*/
|
*/
|
||||||
truncateMarker: /<!--\s*(truncate)\s*-->/
|
truncateMarker: /<!--\s*(truncate)\s*-->/,
|
||||||
/**
|
/**
|
||||||
* Blog feed
|
* Blog feed
|
||||||
* If feedOptions is undefined, no rss feed will be generated
|
* If feedOptions is undefined, no rss feed will be generated
|
||||||
|
@ -183,8 +183,8 @@ module.exports = {
|
||||||
title: '', // default to siteConfig.title
|
title: '', // default to siteConfig.title
|
||||||
description: '', // default to `${siteConfig.title} Blog`
|
description: '', // default to `${siteConfig.title} Blog`
|
||||||
copyright: '',
|
copyright: '',
|
||||||
language: undefined; // possible values: http://www.w3.org/TR/REC-html40/struct/dirlang.html#langcodes
|
language: undefined, // possible values: http://www.w3.org/TR/REC-html40/struct/dirlang.html#langcodes
|
||||||
};
|
},
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue