aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWaylan Limberg <waylan.limberg@icloud.com>2015-03-13 18:23:47 -0400
committerWaylan Limberg <waylan.limberg@icloud.com>2015-03-13 18:23:47 -0400
commit1f5f9b2c2dabfe3205fe9bb4b83d67caf1c324f6 (patch)
tree33daf9944176ef28bd027713dca667e5ae8563ec
parent59bb9afb86d71b258e54c7099beb094f8523ddb7 (diff)
parent31da0c8814b647d7e28ddfda8673eb9eb6a7385a (diff)
downloadmarkdown-1f5f9b2c2dabfe3205fe9bb4b83d67caf1c324f6.tar.gz
markdown-1f5f9b2c2dabfe3205fe9bb4b83d67caf1c324f6.tar.bz2
markdown-1f5f9b2c2dabfe3205fe9bb4b83d67caf1c324f6.zip
Merge pull request #397 from gandaro/doc-fail-0
fix broken documentation code
-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