- Description:
This key toggles whether CloudCannon will output superscript text wrapped in carets when converting HTML to Markdown.
Setting this key to
truewill output superscript text as^super^in Markdown.By default, this key is
false(i.e., superscript text is not output in carets format).- Appears in:
└── markdown └── options └── superscript- Type:
boolean- Default value:
false- Examples:
In this example, we have configured Markdown to output superscript text wrapped in carets.
Copied to clipboardmarkdown: engine: commonmark options: superscript: true{ "markdown": { "engine": "commonmark", "options": { "superscript": true } } }