☁️ Loving our new documentation website? Provide feedback in the CloudCannon Community! ✨

spaced_lists

Table of contents

Description:

This key toggles whether CloudCannon will output lists with an extra space when converting HTML to Markdown.

Setting this key to true will add an extra space in list items when outputting Markdown.

By default, this key is false (i.e., lists are output without an extra space).

Appears in:
└── markdown
    └── options
        └── spaced_lists
Type:
boolean
Default value:
false
Examples:

In this example, we have configured Markdown to output lists with an extra space.

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