emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Orgmode] Valid XHTML


From: Sebastian Rose
Subject: Re: [Orgmode] Valid XHTML
Date: Mon, 27 Oct 2008 02:45:11 +0100
User-agent: Mozilla-Thunderbird 2.0.0.16 (X11/20080724)

The appended patch fixes the parsing-error for the index-file.



sh> xmllint --dtdvalid http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd sitemap.html

no erros
diff --git a/lisp/org-publish.el b/lisp/org-publish.el
index c46aedb..58df822 100644
--- a/lisp/org-publish.el
+++ b/lisp/org-publish.el
@@ -626,7 +626,7 @@ Default for INDEX-FILENAME is 'index.org'."
     (if index-buffer
        (kill-buffer index-buffer))
     (with-temp-buffer
-      (insert (concat index-title "\n\n"))
+      (insert (concat "* " index-title "\n\n"))
       (while (setq file (pop files))
        (let ((fn (file-name-nondirectory file))
              (link (file-relative-name file dir))

reply via email to

[Prev in Thread] Current Thread [Next in Thread]