fixed indentation
[asciidoctor_to_rss.git] / src / main / java / net / wpitchoune / asciidoctor / HTML.java
index 0b79da1..63588a7 100644 (file)
@@ -42,7 +42,7 @@ public final class HTML {
                this.config = config;
        }
        
-       public static void appendHTMLHead(StringBuffer sb, Configuration config)
+       public static void appendHTMLHead(StringBuffer sb, String title, Configuration config)
                        throws IOException {
                File f;
                
@@ -57,11 +57,14 @@ public final class HTML {
                sb.append("<head>\n");
                sb.append(new String(Files.readAllBytes(f.toPath()),
                                     StandardCharsets.UTF_8));
+               sb.append("<title>");
+               sb.append(title);
+               sb.append("</title>\n");
                sb.append("</head>\n");
         }
 
-       private void appendHTMLHead(StringBuffer sb) throws IOException {
-               appendHTMLHead(sb, config);
+       private void appendHTMLHead(StringBuffer sb, String title) throws IOException {
+               appendHTMLHead(sb, title, config);
        }
        
        public static void appendHTMLContentHeader(StringBuffer sb, String title) {
@@ -83,7 +86,7 @@ public final class HTML {
                
                buf = new StringBuffer();
                
-               appendHTMLHead(buf);
+               appendHTMLHead(buf, entry.getTitle());
                
                buf.append("<body>\n");
                
@@ -110,7 +113,7 @@ public final class HTML {
                
                buf = new StringBuffer();
                
-               appendHTMLHead(buf);
+               appendHTMLHead(buf, config.getFeedTitle());
                
                buf.append("<body>\n");
                
@@ -119,12 +122,10 @@ public final class HTML {
                buf.append("<div id='content'>\n");
                
                cmp = new Comparator<SyndEntry>() {
-
                        @Override
                        public int compare(SyndEntry o1, SyndEntry o2) {
                                return o2.getPublishedDate().compareTo(o1.getPublishedDate());
-                       }
-                       
+                       }                       
                };
                
                sortedEntries = new ArrayList<SyndEntry>(entries);
@@ -133,8 +134,9 @@ public final class HTML {
                for(SyndEntry e: sortedEntries) {
                        buf.append("\n<div>");
                        buf.append("<h2>");
+                       buf.append("<a href='" + e.getUri() + "'>");
                        buf.append(e.getTitle());
-                       buf.append("</h2>");
+                       buf.append("</a></h2>");
                        if (e.getPublishedDate() != null) {
                                buf.append("<div class='date'>");
                                buf.append(DATE_FORMATTER.format(e.getPublishedDate()));