diff options
author | Waylan Limberg <waylan.limberg@icloud.com> | 2016-11-17 14:14:57 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-17 14:14:57 -0500 |
commit | dc7cb37a9d6d705d98b1730a2fcd7ce42e86b55d (patch) | |
tree | 222805f24cd74851f2d9dde2ebd77c078e40a006 | |
parent | 0244474b2dbf15986891a8d700c7bb121dc6f55f (diff) | |
download | markdown-dc7cb37a9d6d705d98b1730a2fcd7ce42e86b55d.tar.gz markdown-dc7cb37a9d6d705d98b1730a2fcd7ce42e86b55d.tar.bz2 markdown-dc7cb37a9d6d705d98b1730a2fcd7ce42e86b55d.zip |
Fox formatting of extension_configs example.
Fixes #511. Thanks to @omiday for the report.
-rw-r--r-- | docs/reference.txt | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/docs/reference.txt b/docs/reference.txt index 7268cc6..b65f2dd 100644 --- a/docs/reference.txt +++ b/docs/reference.txt @@ -128,16 +128,12 @@ The following options are available on the `markdown.markdown` function: The dictionary of configuration settings must be in the following format: - extension_configs = - { - 'extension_name_1': - { + extension_configs = { + 'extension_name_1': { 'option_1': 'value_1', 'option_2': 'value_2' }, - { - 'extension_name_2': - { + 'extension_name_2': { 'option_1': 'value_1' } } |