This key toggles whether CloudCannon will output superscript text wrapped in carets when converting HTML to Markdown.
Setting this key to true will 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
└── superscriptType#
boolean
Default value#
false
Examples#
In this example, we have configured Markdown to output superscript text wrapped in carets.
Copied to clipboard
markdown:
engine: commonmark
options:
superscript: true{
"markdown": {
"engine": "commonmark",
"options": {
"superscript": true
}
}
}