From fbd62a6d55f06942f483debf3f4c6b577d9e4b40 Mon Sep 17 00:00:00 2001 From: amwaterhouse Date: Thu, 15 Dec 2005 15:09:23 +0000 Subject: [PATCH] Close body and html, dont put in table --- utils/help2Website.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/utils/help2Website.java b/utils/help2Website.java index 7156c1a..6db4527 100755 --- a/utils/help2Website.java +++ b/utils/help2Website.java @@ -17,8 +17,7 @@ public class help2Website PrintWriter out = new PrintWriter(new FileWriter("helpTOC.html")); out.println("Jalview - Help \n" +"\n" - +"

Contents

\n" - +"
\n"); + +"

Contents

\n"); String line; @@ -72,6 +71,8 @@ public class help2Website } + out.println("\n"); + out.close(); -- 1.7.10.2