summaryrefslogtreecommitdiffstats
path: root/www/txt2html.pl
diff options
context:
space:
mode:
authorRobert Hak <adiamas@rockbox.org>2003-03-19 20:22:39 +0000
committerRobert Hak <adiamas@rockbox.org>2003-03-19 20:22:39 +0000
commit8c8a606601c7df0c4cc21fab613cdf9e353e08b7 (patch)
treeb74e0ba003287cc2d01edfb2bfb6823784a61e51 /www/txt2html.pl
parent8025685146b9e766c46530b375e5e03827bf095c (diff)
downloadrockbox-8c8a606601c7df0c4cc21fab613cdf9e353e08b7.tar.gz
rockbox-8c8a606601c7df0c4cc21fab613cdf9e353e08b7.zip
account for the # in anchor tags
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3483 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'www/txt2html.pl')
-rwxr-xr-xwww/txt2html.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/www/txt2html.pl b/www/txt2html.pl
index 43c7fffa27..6e39e8dcaf 100755
--- a/www/txt2html.pl
+++ b/www/txt2html.pl
@@ -9,7 +9,7 @@ sub fixline {
$_ =~ s/\</&lt;/g;
$_ =~ s/\>/&gt;/g;
- $_ =~ s/(http:\/\/([a-zA-Z0-9_.\/-]*)[^\) .\n])/\<a href=\"$1\"\>$1\<\/a\>/g;
+ $_ =~ s/(http:\/\/([a-zA-Z0-9_.\#\/-]*)[^\) .\n])/\<a href=\"$1\"\>$1\<\/a\>/g;
$_ =~ s/(\\|\/)$/$1&nbsp;/g; # clobber backslash on end of line
}