formatting etc
authorJoey Hess <joey@kodama.kitenet.net>
Wed, 16 Jul 2008 21:43:42 +0000 (17:43 -0400)
committerJoey Hess <joey@kodama.kitenet.net>
Wed, 16 Jul 2008 21:43:42 +0000 (17:43 -0400)
IkiWiki/Plugin/parentlinks.pm

index a94cd469cd78d25395b62ff5a5e48eab1b785514..890a349b597ed2b7193ece1738436c595bd6c05b 100644 (file)
@@ -1,5 +1,4 @@
 #!/usr/bin/perl
-# -*- cperl-indent-level: 8; -*-
 # Ikiwiki parentlinks plugin.
 package IkiWiki::Plugin::parentlinks;
 
@@ -28,13 +27,13 @@ sub parentlinks ($) { #{{{
                $depth=$i;
                $height=($pagedepth - $depth);
                push @ret, {
-                           url => urlto($path, $page),
-                           page => $title,
-                           depth => $depth,
-                           height => $height,
-                           "depth_$depth" => 1,
-                           "height_$height" => 1,
-                          };
+                       url => urlto($path, $page),
+                       page => $title,
+                       depth => $depth,
+                       height => $height,
+                       "depth_$depth" => 1,
+                       "height_$height" => 1,
+               };
                $path.="/".$dir;
                $title=IkiWiki::pagetitle($dir);
                $i++;