diff options
author | Waylan Limberg <waylan@gmail.com> | 2014-08-29 22:18:10 -0400 |
---|---|---|
committer | Waylan Limberg <waylan@gmail.com> | 2014-08-29 22:18:10 -0400 |
commit | 5f941454f9f7c8b62efec24917b2c7ba983d603c (patch) | |
tree | f91ca2be452c6964d608b1e4d46b60d339e928ec /docs/extensions/api.txt | |
parent | 3fda9d59fe0bd3a09c888ebadf92afffb2a74690 (diff) | |
download | markdown-5f941454f9f7c8b62efec24917b2c7ba983d603c.tar.gz markdown-5f941454f9f7c8b62efec24917b2c7ba983d603c.tar.bz2 markdown-5f941454f9f7c8b62efec24917b2c7ba983d603c.zip |
Some docs cleanup.
Diffstat (limited to 'docs/extensions/api.txt')
-rw-r--r-- | docs/extensions/api.txt | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/extensions/api.txt b/docs/extensions/api.txt index 3b5a7c5..8837818 100644 --- a/docs/extensions/api.txt +++ b/docs/extensions/api.txt @@ -589,7 +589,8 @@ following methods available to assist in working with config settings: a boolean value except when it is `None`. No conversion takes place when the previous value of `key` is a string. -* **``setConfigs(items): +* **``setConfigs(items)``**: + Sets multiple config settings given a dict of key/value pairs. ### makeExtension {: #makeextension } @@ -611,7 +612,7 @@ within templates). The "name" of your extension must be a string consisting of the importable path to your module using Python's dot notation. Therefore, if you are providing a library -to your users and would like to include a custom markdown extensions within your +to your users and would like to include a custom markdown extension within your library, that extension would be named `"mylib.mdext.myext"` where `mylib/mdext/myext.py` contains the extension and the `mylib` directory is on the PYTHONPATH. |