]> git.donarmstrong.com Git - ikiwiki_plugins.git/commitdiff
add missing \n
authorDon Armstrong <don@donarmstrong.com>
Wed, 21 Mar 2012 17:38:03 +0000 (10:38 -0700)
committerDon Armstrong <don@donarmstrong.com>
Wed, 21 Mar 2012 17:38:03 +0000 (10:38 -0700)
sweavealike.pm

index 661a4316e1806d7b38cd847747236c5043f2056a..07d516d259148c2932e0741e14552f833573a8a9 100644 (file)
@@ -75,7 +75,7 @@ sub preprocess {
        $output = $param{code};
        $output =~ s/^/> /mg;
     }
-    $output .= $code_result;
+    $output .= "\n".$code_result;
     $output =~ s/^/    /mg;
     return($output);
 }