X-Git-Url: https://sipb.mit.edu/gitweb.cgi/ikiwiki.git/blobdiff_plain/e7d2da564145d4ad05c3dcbe9d71bbf091243b91..72dd9a9a0434e1682d7e27b935500c010a03dddc:/IkiWiki/Plugin/wmd.pm diff --git a/IkiWiki/Plugin/wmd.pm b/IkiWiki/Plugin/wmd.pm index 074e1df6f..9e9f17f7f 100644 --- a/IkiWiki/Plugin/wmd.pm +++ b/IkiWiki/Plugin/wmd.pm @@ -17,7 +17,6 @@ sub getsetup () { return plugin => { safe => 1, - rebuild => 1, }, } @@ -27,10 +26,12 @@ sub formbuilder_setup (@) { return if ! defined $form->field("do"); - return unless (($form->field("do") eq "edit") || - ($form->field("do") eq "create")); + return unless $form->field("do") eq "edit" || + $form->field("do") eq "create" || + $form->field("do") eq "comment"; - $form->tmpl_param("wmd_preview", "
\n".include_javascript(undef, 1)); + $form->tmpl_param("wmd_preview", "
\n". + include_javascript(undef, 1)); } sub include_javascript ($;$) { @@ -42,4 +43,3 @@ sub include_javascript ($;$) { } 1 -