X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=back2html.pm;h=860a1d68d4e2efd02bc9da11fc7b06d50aa1390f;hb=66089632c43ff690f48c78221c593f40e6887beb;hp=a5c654a6652896591e6df9f48792c7697443f736;hpb=18fb824770cc111e65cc0ba5c5dde12806c9c0fe;p=webpac diff --git a/back2html.pm b/back2html.pm index a5c654a..860a1d6 100644 --- a/back2html.pm +++ b/back2html.pm @@ -7,21 +7,30 @@ sub back2html { my $html = shift; + $html =~ s//>/g; my $out; - foreach $line (split(/###/,$html)) { - $out .= ""; - my @items = split(/#-#/,$line); - if ($items[1] =~ m#(http://[\S]+)\s*.*?#i) { - my $url = $1; + foreach $line (split(/\s*###\s*/,$html)) { + $out .= ""; + my @items = split(/\s*#-#\s*/,$line); + # convert spaces in left field to non-breaking spaces + $items[0] =~ s#\s+# #g; + # try to make link on right field + sub mkurl { + my $url = shift || die "mkurl needs url as argument"; # chop URLS longer than 60 characters - my $url = substr($1,0,60); - $url .= "..." if (length($1) > 60); - $items[1] =~ s#(.*)\b(http://[\S]+)(\b?.*)#$1$url$3#g; + my $txturl = substr($1,0,60); + $txturl .= "..." if (length($1) > 60); + return "$txturl"; } + $items[1] =~ s#(http://[\S]+)#mkurl($1)#gie; $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; }