summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWaylan Limberg <waylan.limberg@icloud.com>2015-03-14 17:16:50 -0400
committerWaylan Limberg <waylan.limberg@icloud.com>2015-03-14 17:16:50 -0400
commit04479ee7a6c3a6f1efe9410202cc5c2d467385ee (patch)
tree0327c6a72cab7545cc00f0bfee8251dc8fe8f279
parent8111fd3d80f5a9a530323338ac07910bc9e4f653 (diff)
parent1f5f9b2c2dabfe3205fe9bb4b83d67caf1c324f6 (diff)
downloadpython-markdown-04479ee7a6c3a6f1efe9410202cc5c2d467385ee.tar.gz
Merge branch 'master' of https://github.com/waylan/Python-Markdown
-rw-r--r--docs/extensions/smarty.txt10
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': '&sbquo;', # sb is not a typo!
+ extension_configs = {
+ 'markdown.extensions.smarty': {
+ 'substitutions': {
+ 'left-single-quote': '&sbquo;', # sb is not a typo!
'right-single-quote': '&lsquo;',
'left-double-quote': '&bdquo;',
'right-double-quote': '&ldquo;'
}
- }
+ }
}
!!! note