diff options
author | Waylan Limberg <waylan@gmail.com> | 2013-02-19 16:33:36 -0500 |
---|---|---|
committer | Waylan Limberg <waylan@gmail.com> | 2013-02-19 16:33:36 -0500 |
commit | 8aa2fc7b5138fd97ded7dd1e70103532a9fd6583 (patch) | |
tree | a85aec909892c3e9ca08d23369f0e743e3beb177 /docs/extensions/wikilinks.txt | |
parent | 3b732805676969fdf61ac3214c42ab94e96da0ea (diff) | |
download | markdown-8aa2fc7b5138fd97ded7dd1e70103532a9fd6583.tar.gz markdown-8aa2fc7b5138fd97ded7dd1e70103532a9fd6583.tar.bz2 markdown-8aa2fc7b5138fd97ded7dd1e70103532a9fd6583.zip |
Various changes to docs for updated changes, clarity, and to fix typos.
Diffstat (limited to 'docs/extensions/wikilinks.txt')
-rw-r--r-- | docs/extensions/wikilinks.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/extensions/wikilinks.txt b/docs/extensions/wikilinks.txt index 5f6d20e..ed191e3 100644 --- a/docs/extensions/wikilinks.txt +++ b/docs/extensions/wikilinks.txt @@ -54,7 +54,7 @@ From the Python interpreter: The default behavior is to point each link to the document root of the current domain and close with a trailing slash. Additionally, each link is assigned to the html class `wikilink`. This may not always be desirable. Therefore, one can -customize that behavior within Python code. Three settings are provided to +customize that behavior within Python code. Four settings are provided to change the default behavior: 1. **base_url**: String to append to beginning of URL. @@ -108,7 +108,7 @@ Would cause all wikilinks to be assigned to the class `myclass`. The same options can be used on the command line as well: - python markdown.py -x wikilink(base_url=http://example.com/,end_url=.html,html_class=foo) src.txt + python -m markdown -x wikilink(base_url=http://example.com/,end_url=.html,html_class=foo) src.txt Some may prefer the more complex format when calling the `Markdown` class directly: @@ -133,7 +133,7 @@ meta-data keywords are: * `wiki_end_url` * `wiki_html_class` -When used, the meta-data will override the settings provided through the +When used, the meta-data will override the settings provided through the `extension_configs` interface. This document: |