- Description:
This key toggles whether CloudCannon will convert line breaks (
\n) in paragraphs into<br>tags when converting Markdown to HTML.Setting this key to
truewill convert line breaks within paragraphs into<br>tags.By default, this key is
false(i.e., line breaks in paragraphs are not converted to<br>tags).- Appears in:
- Type:
boolean- Default value:
false- Examples:
In this example, we have configured Markdown to convert line breaks in paragraphs into
<br>tags.Copied to clipboardmarkdown: engine: commonmark options: breaks: true{ "markdown": { "engine": "commonmark", "options": { "breaks": true } } }