comments: don't rely on mdwn getting loaded first

master
Simon McVittie 2008-11-18 10:43:11 +00:00
parent ebe140201e
commit 9d92fd5eb0
1 changed files with 1 additions and 2 deletions

View File

@ -17,8 +17,7 @@ sub import { #{{{
hook(type => "getsetup", id => 'comments', call => \&getsetup);
hook(type => "preprocess", id => 'comments', call => \&preprocess);
hook(type => "sessioncgi", id => 'comment', call => \&sessioncgi);
hook(type => "htmlize", id => "_comment",
call => \&IkiWiki::Plugin::mdwn::htmlize);
hook(type => "htmlize", id => "_comment", call => \&htmlize);
IkiWiki::loadplugin("inline");
IkiWiki::loadplugin("mdwn");
} # }}}