From 2103c73885c68ca0eaf0ae579a6084a8564465c4 Mon Sep 17 00:00:00 2001 From: Colorado Reed Date: Sun, 22 Dec 2013 15:10:19 -0800 Subject: added missing 's' to wikilinks documentation --- docs/extensions/wikilinks.txt | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'docs') 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`):

A WikiLink in the first paragraph.

- -- cgit v1.2.3