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#
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": "«»„\"\""
}
}
}