summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-08-21 14:21:49 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-08-21 14:21:49 +0000
commit3b8ec06f0ef39427f7e3e43a41cefaaddcc7e29c (patch)
tree2e10450d6c98d4957dd1d17f15ac7406e1f50c5a
parentea16c19b517af54a135ebe6ea8e84044907d66e1 (diff)
downloadrockbox-3b8ec06f0ef39427f7e3e43a41cefaaddcc7e29c.zip
rockbox-3b8ec06f0ef39427f7e3e43a41cefaaddcc7e29c.tar.gz
rockbox-3b8ec06f0ef39427f7e3e43a41cefaaddcc7e29c.tar.bz2
rockbox-3b8ec06f0ef39427f7e3e43a41cefaaddcc7e29c.tar.xz
do the blockquotes with CSS instead
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1888 a1c6a512-1295-4272-9138-f99709370657
-rwxr-xr-xwww/txt2plain.pl5
1 files changed, 2 insertions, 3 deletions
diff --git a/www/txt2plain.pl b/www/txt2plain.pl
index c34f94e..47018fc 100755
--- a/www/txt2plain.pl
+++ b/www/txt2plain.pl
@@ -19,7 +19,6 @@ sub show {
if(@a) {
print @a;
undef @a;
- print "</blockquote>\n";
}
if(@p) {
print "<pre>\n";
@@ -63,7 +62,7 @@ while(<STDIN>) {
}
# first line of A
$line =~ s/^A(\d*)[.:] *//g; # cut off the "A[num]."
- push @a, "<blockquote><p class=\"faqa\">";
+ push @a, "<p class=\"faqa\">";
push @a, $line;
$prev='a';
@@ -76,7 +75,7 @@ while(<STDIN>) {
if($prev ne 'a') {
show();
- push @a, "<blockquote><p class=\"faqa\">";
+ push @a, "<p class=\"faqa\">";
}
push @a, $_;