diff options
author | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2006-09-16 01:53:14 +0000 |
---|---|---|
committer | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2006-09-16 01:53:14 +0000 |
commit | eabafab8e4aa15fd47bd8bf4a20face7d12e5e30 (patch) | |
tree | 2dab30b24f5095201d9f8acf4bdf0286e661001d /IkiWiki | |
parent | 0df2ad5dfe1d896520eceabfe362891f68ed3165 (diff) | |
download | ikiwiki-eabafab8e4aa15fd47bd8bf4a20face7d12e5e30.tar ikiwiki-eabafab8e4aa15fd47bd8bf4a20face7d12e5e30.tar.gz |
oops...
Diffstat (limited to 'IkiWiki')
-rw-r--r-- | IkiWiki/Plugin/mdwn.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/IkiWiki/Plugin/mdwn.pm b/IkiWiki/Plugin/mdwn.pm index c871e2a4d..625f77f21 100644 --- a/IkiWiki/Plugin/mdwn.pm +++ b/IkiWiki/Plugin/mdwn.pm @@ -44,7 +44,7 @@ sub htmlize (@) { #{{{ # Workaround for perl bug (#376329) $content=Encode::encode_utf8($content); $content=Encode::encode_utf8($content); - $content=Markdown::Markdown($content); + $content=&$markdown_sub($content); $content=Encode::decode_utf8($content); $content=Encode::decode_utf8($content); |