]> sipb.mit.edu Git - ikiwiki.git/blobdiff - IkiWiki/Plugin/txt.pm
comments: Add cache avoidance.
[ikiwiki.git] / IkiWiki / Plugin / txt.pm
index e157bf07e1eff1b66c93f1ddc4b018846e42cfe8..8599bdc8ec881429472ef19f760113f27d0a678f 100644 (file)
@@ -8,7 +8,7 @@ package IkiWiki::Plugin::txt;
 
 use warnings;
 use strict;
-use IkiWiki 2.00;
+use IkiWiki 3.00;
 use HTML::Entities;
 
 my $findurl=0;
@@ -24,13 +24,13 @@ sub import {
        }
 }
 
-sub getsetup () { #{{{
+sub getsetup () {
        return
                plugin => {
                        safe => 1,
                        rebuild => 1, # format plugin
                },
-} #}}}
+}
 
 # We use filter to convert raw text to HTML
 # (htmlize is called after other plugins insert HTML)