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

superscript

Table of contents

Description:

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
        └── superscript
Type:
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
    }
  }
}
Open in a new tab