Recent searches

in

strikethrough

On this page

This key toggles whether CloudCannon will output strikethrough text wrapped in double tildes when converting HTML to Markdown.

Setting this key to true will output strikethrough text as ~~strike~~ in Markdown.

By default, this key is false (i.e., strikethrough text is not output in double tildes format).

Appears in

└── markdown
    └── options
        └── strikethrough

Type

boolean

Default value

false

Examples

In this example, we have configured Markdown to output strikethrough text wrapped in double tildes.

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