From 3b8ec06f0ef39427f7e3e43a41cefaaddcc7e29c Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Wed, 21 Aug 2002 14:21:49 +0000 Subject: do the blockquotes with CSS instead git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1888 a1c6a512-1295-4272-9138-f99709370657 --- www/txt2plain.pl | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'www/txt2plain.pl') diff --git a/www/txt2plain.pl b/www/txt2plain.pl index c34f94eb20..47018fcf9b 100755 --- a/www/txt2plain.pl +++ b/www/txt2plain.pl @@ -19,7 +19,6 @@ sub show { if(@a) { print @a; undef @a; - print "\n"; } if(@p) { print "
\n";
@@ -63,7 +62,7 @@ while() {
         }
         # first line of A
         $line =~ s/^A(\d*)[.:] *//g; # cut off the "A[num]."
-        push @a, "

"; + push @a, "

"; push @a, $line; $prev='a'; @@ -76,7 +75,7 @@ while() { if($prev ne 'a') { show(); - push @a, "

"; + push @a, "

"; } push @a, $_; -- cgit v1.2.3