From mboxrd@z Thu Jan 1 00:00:00 1970 From: Richard Lawrence Subject: Bug? Or new behavior? Paragraphs in HTML Date: Sat, 06 Sep 2014 09:31:28 -0700 Message-ID: <87ppf83e3j.fsf@berkeley.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:46620) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XQIvB-0006jW-E3 for emacs-orgmode@gnu.org; Sat, 06 Sep 2014 12:33:13 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XQIv3-0004Km-UO for emacs-orgmode@gnu.org; Sat, 06 Sep 2014 12:33:05 -0400 Received: from plane.gmane.org ([80.91.229.3]:56156) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XQIv3-0004Ki-NS for emacs-orgmode@gnu.org; Sat, 06 Sep 2014 12:32:57 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1XQIv0-0003tR-EA for emacs-orgmode@gnu.org; Sat, 06 Sep 2014 18:32:54 +0200 Received: from c-67-169-117-151.hsd1.ca.comcast.net ([67.169.117.151]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 06 Sep 2014 18:32:54 +0200 Received: from richard.lawrence by c-67-169-117-151.hsd1.ca.comcast.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 06 Sep 2014 18:32:54 +0200 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Hi everyone, After updating this morning, I notice that when #+BEGIN_SRC org * My headline Some text here. #+END_SRC is exported to HTML, the paragraph below the headline is no longer wrapped in a paragraph tag: #+BEGIN_SRC html

1 My headline

Some text here.
#+END_SRC Whereas if there is more than one paragraph below the headline, they are: #+BEGIN_SRC org * My headline Some text here. What about here? Or here? #+END_SRC becomes #+BEGIN_SRC html

1 My headline

Some text here.

What about here?

Or here?

#+END_SRC I am guessing this is the result of commit 9a34a13c077f592c5528d95c155ecdf2d655937e. Is this now the expected behavior for paragraphs, even *outside* of lists? Personally I find this a bit unexpected. It broke my CSS, and I am not sure what the best way to fix it is. What should I do if I want to style all the blocks of text on a page, since some will be wrapped in

tags and others won't be, depending on whether there are other paragraphs in the same div? Best, Richard