aboutsummaryrefslogtreecommitdiffstats
path: root/docs/extensions
diff options
context:
space:
mode:
authorColorado Reed <colorado.j.reed@gmail.com>2013-12-22 15:10:19 -0800
committerColorado Reed <colorado.j.reed@gmail.com>2013-12-22 15:10:19 -0800
commit2103c73885c68ca0eaf0ae579a6084a8564465c4 (patch)
treebc353e5b009c08b7fef894155dac5534bf170249 /docs/extensions
parent03029616a9f40b4e8affab981818e47a9507acd9 (diff)
downloadmarkdown-2103c73885c68ca0eaf0ae579a6084a8564465c4.tar.gz
markdown-2103c73885c68ca0eaf0ae579a6084a8564465c4.tar.bz2
markdown-2103c73885c68ca0eaf0ae579a6084a8564465c4.zip
added missing 's' to wikilinks documentation
Diffstat (limited to 'docs/extensions')
-rw-r--r--docs/extensions/wikilinks.txt5
1 files changed, 2 insertions, 3 deletions
diff --git a/docs/extensions/wikilinks.txt b/docs/extensions/wikilinks.txt
index 5cfdb77..ca36d17 100644
--- a/docs/extensions/wikilinks.txt
+++ b/docs/extensions/wikilinks.txt
@@ -49,7 +49,7 @@ Usage
From the Python interpreter:
>>> text = "Some text with a [[WikiLink]]."
- >>> html = markdown.markdown(text, ['wikilink'])
+ >>> html = markdown.markdown(text, ['wikilinks'])
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
@@ -91,7 +91,7 @@ could also pass in a callable which must accept three arguments (``label``,
return url
md = markdown.Markdown(
- extensions=['wikilinks'],
+ extensions=['wikilinks],
extension_configs={'wikilinks' : [('build_url', my_url_builder)]}
)
@@ -147,4 +147,3 @@ This document:
would result in the following output (notice the blank `wiki_html_class`):
<p>A <a href="http://example.com/WikiLink.html">WikiLink</a> in the first paragraph.</p>
-