From mboxrd@z Thu Jan 1 00:00:00 1970 From: Sebastian Rose Subject: Re: Valid XHTML Date: Mon, 27 Oct 2008 02:45:11 +0100 Message-ID: <49051D27.3010905@gmx.de> References: <490B6274.8090507@gmx.de> <4904E4C6.4080404@gmx.de> Reply-To: sebastian_rose@gmx.de Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="------------070204000107080709090607" Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Kw4bt-0006uA-Kt for emacs-orgmode@gnu.org; Fri, 31 Oct 2008 20:45:01 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Kw4bs-0006te-5a for emacs-orgmode@gnu.org; Fri, 31 Oct 2008 20:45:01 -0400 Received: from [199.232.76.173] (port=40369 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Kw4bs-0006ta-2H for emacs-orgmode@gnu.org; Fri, 31 Oct 2008 20:45:00 -0400 Received: from mail.gmx.net ([213.165.64.20]:48026) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1Kw4bs-0000zs-Ab for emacs-orgmode@gnu.org; Fri, 31 Oct 2008 20:45:00 -0400 In-Reply-To: <4904E4C6.4080404@gmx.de> List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: sebastian_rose@gmx.de Cc: "[emacs-orgmode]" This is a multi-part message in MIME format. --------------070204000107080709090607 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit 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 --------------070204000107080709090607 Content-Type: text/x-patch; name="patch-sitemap-unclosed-diff.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="patch-sitemap-unclosed-diff.patch" 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)) --------------070204000107080709090607 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode --------------070204000107080709090607--