about summary refs log tree commit homepage
diff options
context:
space:
mode:
-rw-r--r--lib/PublicInbox/View.pm10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/PublicInbox/View.pm b/lib/PublicInbox/View.pm
index 09035507..7be72cfc 100644
--- a/lib/PublicInbox/View.pm
+++ b/lib/PublicInbox/View.pm
@@ -156,10 +156,10 @@ sub index_entry {
         # add the footer
         $rv .= "\n<a\nhref=#$id_m\nid=e$id>^</a> ".
                 "<a\nhref=\"$mhref\">permalink</a>" .
-                " / <a\nhref=\"${mhref}raw\">raw</a>" .
-                " / <a\nhref=\"${mhref}#R\">reply</a>";
+                " <a\nhref=\"${mhref}raw\">raw</a>" .
+                " <a\nhref=\"${mhref}#R\">reply</a>";
         if (my $pct = $ctx->{pct}) { # used by SearchView.pm
-                $rv .= " [relevance $pct->{$mid_raw}%]";
+                $rv .= "\t[relevance $pct->{$mid_raw}%]";
         } elsif ($mapping) {
                 my $threaded = 'threaded';
                 my $flat = 'flat';
@@ -169,9 +169,9 @@ sub index_entry {
                 } else {
                         $threaded = "<b>$threaded</b>";
                 }
-                $rv .= " / [<a\nhref=\"${mhref}T/#u\">$flat</a>";
+                $rv .= "\t[<a\nhref=\"${mhref}T/#u\">$flat</a>";
                 $rv .= "|<a\nhref=\"${mhref}t/#u\">$threaded</a>]";
-                $rv .= " / <a\nhref=#r$id>$ctx->{s_nr}</a>";
+                $rv .= " <a\nhref=#r$id>$ctx->{s_nr}</a>";
         }
 
         $rv .= $more ? "\n\n" : "\n";