]> sipb.mit.edu Git - ikiwiki.git/blobdiff - doc/todo/modify_page_filename_in_plugin.mdwn
Coding style change: Remove explcit vim folding markers.
[ikiwiki.git] / doc / todo / modify_page_filename_in_plugin.mdwn
index 7c0a909eb7f53f6bad48a086f619fe033b1e8e24..4099487a12193ff8d725506bb0f5c19b666ae909 100644 (file)
@@ -10,7 +10,7 @@ My solution is to allow plugins to provide a hook that sets the pagename. --[[/u
     +++ /usr/share/perl5/IkiWiki.pm 2008-10-07 11:57:26.000000000 -0400
     @@ -196,11 +196,32 @@
 
-     sub pagename ($) { #{{{
+     sub pagename ($) {
             my $file=shift;
 
             my $type=pagetype($file);
@@ -27,7 +27,7 @@ My solution is to allow plugins to provide a hook that sets the pagename. --[[/u
             $page=~s/\Q.$type\E*$// if defined $type;
             return $page;
     +   }
-     } #}}}
+     }
 
-     sub htmlpage ($) { #{{{
+     sub htmlpage ($) {