From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bastien Subject: Re: Org-mode version 5.13 Date: Sat, 20 Oct 2007 11:30:29 +0100 Message-ID: <877ili13ju.fsf@bzg.ath.cx> References: Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1IjAf8-0000qt-T8 for emacs-orgmode@gnu.org; Sat, 20 Oct 2007 05:30:30 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1IjAf7-0000or-3R for emacs-orgmode@gnu.org; Sat, 20 Oct 2007 05:30:30 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IjAf6-0000oZ-St for emacs-orgmode@gnu.org; Sat, 20 Oct 2007 05:30:28 -0400 Received: from mu-out-0910.google.com ([209.85.134.187]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1IjAf6-0005aD-FV for emacs-orgmode@gnu.org; Sat, 20 Oct 2007 05:30:28 -0400 Received: by mu-out-0910.google.com with SMTP id g7so911890muf for ; Sat, 20 Oct 2007 02:30:27 -0700 (PDT) In-Reply-To: (Carsten Dominik's message of "Fri, 19 Oct 2007 08:25:18 +0200") 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: emacs-orgmode@gnu.org --=-=-= Hello all, Carsten Dominik writes: > - The table of context is wrapped into a div with a class > "table-of-contents". This should be "id", not "class", since there is only one instance of the table of contents - fixed in the proposed patch. > - The outline structure is embedded in
elements with > classes "outline-1", "outline-2" etc. Classes are ok here. > - The postamble, containing the author information and the > date is wrapped into a div with class "postamble". There was a small typo for the
of the postamble, this patch also fixes it. --=-=-= Content-Type: text/x-diff Content-Disposition: inline; filename=org.el.patch diff -u /home/guerry/elisp/testing/org/org.el /home/guerry/elisp/testing/bzg/org.el --- /home/guerry/elisp/testing/org/org.el 2007-10-19 15:44:15.000000000 +0100 +++ /home/guerry/elisp/testing/bzg/org.el 2007-10-20 11:26:28.000000000 +0100 @@ -23830,7 +23830,7 @@ (unless body-only (when (plist-get opt-plist :auto-postamble) - (insert "") + (insert "
") (when (and org-export-author-info author) (insert "

" (nth 1 lang-words) ": " author "\n") @@ -23866,7 +23866,7 @@ (when (looking-at "\\s-*

") (goto-char (match-end 0)) (insert "\n"))) - (insert "
\n") + (insert "
\n") (mapc 'insert thetoc) (insert "
\n")) ;; remove empty paragraphs and lists Diff finished. Sat Oct 20 11:29:17 2007 --=-=-= -- Bastien --=-=-= 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 --=-=-=--