X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=back2html.pm;h=860a1d68d4e2efd02bc9da11fc7b06d50aa1390f;hb=01445c3287b5055c9f87f4596e3c7af5774247c7;hp=6617f2a0bd0d702dfe30f97947b936e8ad9c0fd8;hpb=c733b74c6b0889e05c1b23af1cd5f0e16b989ed0;p=webpac diff --git a/back2html.pm b/back2html.pm index 6617f2a..860a1d6 100644 --- a/back2html.pm +++ b/back2html.pm @@ -7,14 +7,30 @@ sub back2html { my $html = shift; + $html =~ s//>/g; my $out; - foreach $line (split(/###/,$html)) { - $out .= ""; - my @items = split(/#-#/,$line); + 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 $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; }