diff options
author | Waylan Limberg <waylan@gmail.com> | 2013-02-27 12:52:02 -0500 |
---|---|---|
committer | Waylan Limberg <waylan@gmail.com> | 2013-02-27 12:52:02 -0500 |
commit | 26ebafb3b86b224c2acad29bf4d4314a3242189a (patch) | |
tree | eb3ae02a639e724b794319f8884698b14385f3a9 /docs/extensions/api.txt | |
parent | 52613ceeed7b022a799be7b52775c8705133eca7 (diff) | |
download | markdown-26ebafb3b86b224c2acad29bf4d4314a3242189a.tar.gz markdown-26ebafb3b86b224c2acad29bf4d4314a3242189a.tar.bz2 markdown-26ebafb3b86b224c2acad29bf4d4314a3242189a.zip |
Tweaked the docs some more.
Diffstat (limited to 'docs/extensions/api.txt')
-rw-r--r-- | docs/extensions/api.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/extensions/api.txt b/docs/extensions/api.txt index ac840f9..bc06154 100644 --- a/docs/extensions/api.txt +++ b/docs/extensions/api.txt @@ -594,7 +594,7 @@ the module and call the `makeExtension` function to initiate your extension. 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 with your +to your users and would like to include a custom markdown extensions within your library, that extension would be named `"mylib.mdext.myext"` where `mylib/mdext/myext.py` contains the `makeExtension` function and the `mylib` directory is on the PYTHONPATH. |