X-Git-Url: http://www.git.stargrave.org/?a=blobdiff_plain;f=lib%2FPublicInbox%2FView.pm;h=e604aee0d84106d83ce487c119d79e662400c268;hb=02cdbe1c1638ba8e80351b39029c08343fab018b;hp=fd1bd7e2add29f423398dc6b32b6093a820537ea;hpb=319f46708b844aeeb4bf6308dd19ee1c5066d2af;p=public-inbox.git diff --git a/lib/PublicInbox/View.pm b/lib/PublicInbox/View.pm index fd1bd7e2..e604aee0 100644 --- a/lib/PublicInbox/View.pm +++ b/lib/PublicInbox/View.pm @@ -496,13 +496,10 @@ sub multipart_text_as_html { sub flush_quote { my ($s, $l, $quot) = @_; - # show everything in the full version with anchor from - # short version (see above) - my $rv = $l->linkify_1($$quot); + my $rv = $l->to_html($$quot); # we use a here to allow users to specify their own # color for quoted text - $rv = $l->linkify_2(ascii_html($rv)); $$quot = undef; $$s .= qq() . $rv . '' } @@ -608,8 +605,7 @@ sub add_text_body { # callback for msg_iter flush_diff($rv, $ctx, $l); } else { # regular lines, OK - $l->linkify_1($cur); - $$rv .= $l->linkify_2(ascii_html($cur)); + $$rv .= $l->to_html($cur); $cur = undef; } }