- Description:
This key toggles whether CloudCannon will output strikethrough text wrapped in double tildes when converting HTML to Markdown.
Setting this key to
truewill 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 clipboardmarkdown: engine: commonmark options: strikethrough: true{ "markdown": { "engine": "commonmark", "options": { "strikethrough": true } } }