diff options
author | Jakob Kramer <jakob.kramer@gmx.de> | 2015-03-13 23:07:43 +0100 |
---|---|---|
committer | Jakob Kramer <jakob.kramer@gmx.de> | 2015-03-13 23:07:43 +0100 |
commit | 31da0c8814b647d7e28ddfda8673eb9eb6a7385a (patch) | |
tree | 33daf9944176ef28bd027713dca667e5ae8563ec /docs | |
parent | 59bb9afb86d71b258e54c7099beb094f8523ddb7 (diff) | |
download | markdown-31da0c8814b647d7e28ddfda8673eb9eb6a7385a.tar.gz markdown-31da0c8814b647d7e28ddfda8673eb9eb6a7385a.tar.bz2 markdown-31da0c8814b647d7e28ddfda8673eb9eb6a7385a.zip |
fix broken documentation code
Diffstat (limited to 'docs')
-rw-r--r-- | docs/extensions/smarty.txt | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/extensions/smarty.txt b/docs/extensions/smarty.txt index d511da1..247658a 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 |