--- trunk/back2html.pm 2003/11/16 13:20:14 146 +++ branches/fsb/back2html.pm 2004/04/17 20:57:48 307 @@ -27,7 +27,10 @@ $out .= join("",@items); $out .= "\n"; } - $out =~ s/<br\/*>//g; + # put
back into html + $out =~ s,<br/*>,
,gi; + # put yyyy back into html + $out =~ s,<(a\s+href=)(.+?)>(.+?)<(/a)>,<$1$2>$3<$4>,gsi; return $out; }