From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Xerxes Folupa" <120715@gmail.com> Subject: bug: superfluous

tags when exporting verse and quote blocks Date: Sun, 07 Dec 2008 15:35:27 -0300 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; format=flowed; delsp=yes; charset=iso-8859-1 Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1L9OY3-000472-Q6 for emacs-orgmode@gnu.org; Sun, 07 Dec 2008 13:40:07 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1L9OY2-000467-AR for emacs-orgmode@gnu.org; Sun, 07 Dec 2008 13:40:07 -0500 Received: from [199.232.76.173] (port=51875 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1L9OY1-000464-Up for emacs-orgmode@gnu.org; Sun, 07 Dec 2008 13:40:05 -0500 Received: from main.gmane.org ([80.91.229.2]:56893 helo=ciao.gmane.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1L9OY1-0003QJ-JP for emacs-orgmode@gnu.org; Sun, 07 Dec 2008 13:40:05 -0500 Received: from root by ciao.gmane.org with local (Exim 4.43) id 1L9OXz-0005hu-4D for emacs-orgmode@gnu.org; Sun, 07 Dec 2008 18:40:03 +0000 Received: from 190.161.24.77 ([190.161.24.77]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 07 Dec 2008 18:40:03 +0000 Received: from 120715 by 190.161.24.77 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 07 Dec 2008 18:40:03 +0000 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 Hi, I spotted a little inconsistency in the way Org strips tags when processing #+begin_verse ... #+end_verse, and #+begin_quote ... #+end_quote blocks, compared with other literal blocks that strip superfluous

tags correctly (e.g. #+html) org-version: Org-mode version 6.14 emacs-version: GNU Emacs 23.0.60.1 (i386-mingw-nt5.1.2600) As usual, it's easier to request a fix than to implement it yourself... === * Sample input: #+begin_verse one two #+end_verse paragraph. #+begin_quote one. --author #+end_quote * Output:

one
two

paragraph.

one. –author

* Desired, 'valid xhtml' output:

one
two

paragraph.

one. –author

=== Additional question: is the space before the
in verse blocks a design decision? Cheers, Xerxes