From: Daniel Gruno Date: Tue, 24 Apr 2012 17:46:33 +0000 (+0000) Subject: Testing the new syntax highlighting for perl scripts X-Git-Tag: 2.5.0-alpha~7062 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d87d888a439422dcd7133e2b17c0d6c1445fcbc8;p=thirdparty%2Fapache%2Fhttpd.git Testing the new syntax highlighting for perl scripts git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1329890 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/rewrite/rewritemap.html.en b/docs/manual/rewrite/rewritemap.html.en index 90e190a3182..0afd5d75372 100644 --- a/docs/manual/rewrite/rewritemap.html.en +++ b/docs/manual/rewrite/rewritemap.html.en @@ -375,14 +375,15 @@ by many requests.

dash2under.pl

- #!/usr/bin/perl
- $| = 1; # Turn off I/O buffering
- while (<STDIN>) {
- - s/-/_/g; # Replace dashes with underscores
- print $_;
-
- }
+

+    #!/usr/bin/perl
+    $| = 1; # Turn off I/O buffering
+    while (<STDIN>) {
+        s/-/_/g; # Replace dashes with underscores
+        print $_;
+    }
+    
+

Caution!