diff --git a/docs/extensions/smarty.txt b/docs/extensions/smarty.txt index d511da111..247658ab2 100644 --- a/docs/extensions/smarty.txt +++ b/docs/extensions/smarty.txt @@ -29,15 +29,15 @@ keys to the substitution strings. For example, one might use the following configuration to get correct quotes for the German language: - extensionConfigs = { - 'smarty': { - 'substitutions': { - 'left-single-quote': '‚', # sb is not a typo! + extension_configs = { + 'markdown.extensions.smarty': { + 'substitutions': { + 'left-single-quote': '‚', # sb is not a typo! 'right-single-quote': '‘', 'left-double-quote': '„', 'right-double-quote': '“' } - } + } } !!! note