]> sipb.mit.edu Git - ikiwiki.git/blobdiff - IkiWiki/Plugin/creole.pm
avoid uninitialized value
[ikiwiki.git] / IkiWiki / Plugin / creole.pm
index 7c729300d9a7e964a72dd137e67a6e42e3fc9991..3c46a48df1e43336763361d3a9d4f3ded41cf76a 100644 (file)
@@ -7,20 +7,20 @@ use warnings;
 use strict;
 use IkiWiki 2.00;
 
-sub import { #{{{
+sub import {
        hook(type => "getsetup", id => "creole", call => \&getsetup);
        hook(type => "htmlize", id => "creole", call => \&htmlize);
-} # }}}
+}
 
-sub getsetup { #{{{
+sub getsetup {
        return
                plugin => {
                        safe => 1,
                        rebuild => 1, # format plugin
                },
-} #}}}
+}
 
-sub htmlize (@) { #{{{
+sub htmlize (@) {
        my %params=@_;
        my $content = $params{content};
 
@@ -32,6 +32,6 @@ sub htmlize (@) { #{{{
        creole_custombarelinks();
 
        return creole_parse($content);
-} # }}}
+}
 
 1