Eric Wong <[email protected]> wrote:
> + print $zfh <<EOM;
> +found last record of `$path' in the following commit:
> +<a href="$ctx->{-upfx}$H/s/?b=$x">$h</a> $s_as
> +EOM
I think an extra newline works better, here:
diff --git a/lib/PublicInbox/RepoTree.pm b/lib/PublicInbox/RepoTree.pm
index 5b502a45..cec71eb6 100644
--- a/lib/PublicInbox/RepoTree.pm
+++ b/lib/PublicInbox/RepoTree.pm
@@ -30,6 +30,7 @@ sub rd_404_log {
$s_as = ascii_html($s_as);
print $zfh <<EOM;
found last record of `$path' in the following commit:
+
<a href="$ctx->{-upfx}$H/s/?b=$x">$h</a> $s_as
EOM
}