Recent searches

in

subscript

On this page

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

Setting this key to true will output subscript text as ~sub~ in Markdown.

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

Appears in#

└── markdown
    └── options
        └── subscript

Type#

boolean

Default value#

false

Examples#

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

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