diff --git a/docs/source/configuration/settings-reference.md b/docs/source/configuration/settings-reference.md index afa7f85e46..94abdeebd1 100644 --- a/docs/source/configuration/settings-reference.md +++ b/docs/source/configuration/settings-reference.md @@ -26,8 +26,9 @@ navDepth Navigation levels depth used in the navigation endpoint calls. Increasing this is useful for implementing fat navigation menus. Defaults to `1`. defaultBlockType - The default block type in Volto is "text", which uses the current DraftJS-based implementation for the rich text editor. Future alternative rich text editors will need to use this setting and replace it with their block type. The block definition should also include the `blockHasValue` function, which is needed to activate the Block Chooser functionality. See this function signature in [Blocks > Settings](../blocks/settings.md). - + The name of the default block type used when a new block is added. + The default value of this setting is "slate", which uses the current Slate-based implementation for the rich-text editor. + If you change this to a different type of block, make sure the block config includes the `blockHasValue` function. See this function signature in [Blocks > Settings](../blocks/settings.md). sentryOptions In Volto 16.0.0.alpha.45, Sentry integration was moved from core to the add-on [`@plone-collective/volto-sentry`](https://www.npmjs.com/package/@plone-collective/volto-sentry). diff --git a/packages/volto/news/5854.documentation b/packages/volto/news/5854.documentation new file mode 100644 index 0000000000..d985697cc4 --- /dev/null +++ b/packages/volto/news/5854.documentation @@ -0,0 +1 @@ +Update docs for the defaultBlockType setting. @davisagli