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

typographer

Table of contents

Description:

This key toggles whether CloudCannon will enable typographic replacements and quote beautification when converting Markdown to HTML.

Setting this key to true will enable language-neutral replacements (such as dashes and ellipses) and beautify quotes based on the quotes configuration.

By default, this key is false (i.e., typographic replacements and quote beautification are disabled).

Appears in:
└── markdown
    └── options
        └── typographer
Type:
boolean
Default value:
false
Examples:

In this example, we have configured Markdown to enable typographic replacements and quote beautification.

Copied to clipboard
markdown:
  engine: commonmark
  options:
    typographer: true
    quotes: «»„""
{
  "markdown": {
    "engine": "commonmark",
    "options": {
      "typographer": true,
      "quotes": "«»„\"\""
    }
  }
}
Open in a new tab