diff options
author | Waylan Limberg <waylan@gmail.com> | 2012-09-07 13:45:45 -0300 |
---|---|---|
committer | Waylan Limberg <waylan@gmail.com> | 2012-09-07 13:45:45 -0300 |
commit | 8d84c356bdf27c40a2e694a3e50f44830b8c6fd6 (patch) | |
tree | 06178ef355c211de677290854054ddfb43663901 | |
parent | 0794f32333bcf9d15f782899538386242c37921e (diff) | |
download | markdown-8d84c356bdf27c40a2e694a3e50f44830b8c6fd6.tar.gz markdown-8d84c356bdf27c40a2e694a3e50f44830b8c6fd6.tar.bz2 markdown-8d84c356bdf27c40a2e694a3e50f44830b8c6fd6.zip |
Fixed #141. Minor typo on wikilinks docs.
Thanks for the report.
-rw-r--r-- | docs/extensions/wikilinks.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/extensions/wikilinks.txt b/docs/extensions/wikilinks.txt index b5e2b04..5f6d20e 100644 --- a/docs/extensions/wikilinks.txt +++ b/docs/extensions/wikilinks.txt @@ -99,7 +99,7 @@ could also pass in a callable which must accept three arguments (``label``, The option is also provided to change or remove the class attribute. >>> html = markdown.markdown(text, - ... ['wikilink(base_url=myclass)'] + ... ['wikilink(html_class=myclass)'] ... ) Would cause all wikilinks to be assigned to the class `myclass`. |