--- trunk/back2html.pm 2003/02/16 22:41:37 13 +++ trunk/back2html.pm 2003/07/04 20:41:17 64 @@ -11,9 +11,13 @@ foreach $line (split(/###/,$html)) { $out .= ""; my @items = split(/#-#/,$line); + if ($items[1] =~ m#^http://#) { + $items[1] = "$items[1]"; + } $out .= join("",@items); $out .= "\n"; } + $out =~ s/<br\/*>//g; return $out; }