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

quotes

Table of contents

Description:

This key defines double and single quotes replacement pairs for quote beautification when typographer is enabled.

The value is a string that specifies quote pairs. For example, you can use "«»„"" for Russian, ""„"‚"" for German, and ["«\xA0", "\xA0»", "‹\xA0", "\xA0›"] for French (including nbsp).

This key only takes effect when typographer is enabled.

Appears in:
└── markdown
    └── options
        └── quotes
Type:
string
Examples:

In this example, we have configured quote replacement pairs for Russian typography.

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