From a77c6369bda2217903c0d184e1fa092db2c5c2d6 Mon Sep 17 00:00:00 2001
From: Nick White <git@njw.me.uk>
Date: Sun, 22 May 2011 00:54:57 +0100
Subject: Don't print title at top of page

Can result in double printing of the title, and we don't really need
it as it's in <title> anyway.
---
 simplyread.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/simplyread.js b/simplyread.js
index 699a0c1..1a117e9 100755
--- a/simplyread.js
+++ b/simplyread.js
@@ -63,8 +63,8 @@ function simplyread()
 		doc.styleSheets[i].disabled = true;
 	
 	doc.body.innerHTML =
-		"<div style=\"width:38em; margin:auto; text-align:justify; font-family:sans;\">" +
-		"<h1 style=\"text-align: center\">" + doc.title + "</h1>" +
+		"<div style=\"width:38em; margin:auto;" +
+		" text-align:justify; font-family:sans;\">" +
 		fresh.innerHTML + "</div>";
 
 	return 0;
-- 
cgit v1.2.3