Recent searches

in

sentence_per_line

On this page

This key toggles whether CloudCannon will add line breaks between sentences when converting HTML to Markdown.

Setting this key to true will add line breaks between sentences in the output Markdown.

By default, this key is false (i.e., line breaks are not added between sentences).

Appears in

└── markdown
    └── options
        └── sentence_per_line

Type

boolean

Default value

false

Examples

In this example, we have configured Markdown to add line breaks between sentences.

Copied to clipboard
markdown:
  engine: commonmark
  options:
    sentence_per_line: true
{
  "markdown": {
    "engine": "commonmark",
    "options": {
      "sentence_per_line": true
    }
  }
}
Open in a new tab