about summary refs log tree commit homepage
path: root/lib/PublicInbox/Feed.pm
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2014-09-13 21:50:31 +0000
committerEric Wong <e@80x24.org>2014-09-13 22:00:32 +0000
commit6b770362ceb3dd9089de0cffb7716fb533d2709b (patch)
treefda7ef0652bfe1a6d22167459f71d55236671348 /lib/PublicInbox/Feed.pm
parent627b9bd388d67d6532a7f2dba0603a602a412a07 (diff)
downloadpublic-inbox-6b770362ceb3dd9089de0cffb7716fb533d2709b.tar.gz
It's important to keep HTML source readable to folks who prefer
to read raw HTML.  This should improve readability of the HTML
source by keeping line length in check without wasting bytes.
Diffstat (limited to 'lib/PublicInbox/Feed.pm')
-rw-r--r--lib/PublicInbox/Feed.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/PublicInbox/Feed.pm b/lib/PublicInbox/Feed.pm
index 350cc65e..339d9c20 100644
--- a/lib/PublicInbox/Feed.pm
+++ b/lib/PublicInbox/Feed.pm
@@ -12,7 +12,7 @@ use PublicInbox::View;
 use constant {
         DATEFMT => '%Y-%m-%dT%H:%M:%SZ', # atom standard
         MAX_PER_PAGE => 25, # this needs to be tunable
-        PRE_WRAP => '<pre style="white-space:pre-wrap">',
+        PRE_WRAP => "<pre\nstyle=\"white-space:pre-wrap\">",
 };
 
 # main function
@@ -73,8 +73,8 @@ sub generate_html_index {
         my $th = PublicInbox::Thread->new(@messages);
         $th->thread;
         my $html = "<html><head><title>$title</title>" .
-                '<link rel="alternate" title="Atom feed" href="' .
-                $feed_opts->{atomurl} . '" type="application/atom+xml"/>' .
+                '<link rel="alternate" title="Atom feed"' . "\nhref=\"" .
+                $feed_opts->{atomurl} . "\"\ntype=\"application/atom+xml\"/>" .
                 '</head><body>' . PRE_WRAP;
 
         # sort child messages in chronological order