From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: Bug: HTML export problem [8.2.3b] Date: Wed, 13 Nov 2013 18:50:02 -0500 Message-ID: <8761rvrhed.fsf@alphaville.bos.redhat.com> References: <6EB20FA6-C8D7-4012-8E1D-0BC01E7D5283@target-ent.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:35142) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VgkCR-0002AO-QO for emacs-orgmode@gnu.org; Wed, 13 Nov 2013 18:50:25 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VgkCM-0001gp-K8 for emacs-orgmode@gnu.org; Wed, 13 Nov 2013 18:50:19 -0500 Received: from plane.gmane.org ([80.91.229.3]:51843) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VgkCM-0001gh-Bu for emacs-orgmode@gnu.org; Wed, 13 Nov 2013 18:50:14 -0500 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1VgkCL-0004ky-3r for emacs-orgmode@gnu.org; Thu, 14 Nov 2013 00:50:13 +0100 Received: from nat-pool-bos-t.redhat.com ([66.187.233.206]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 14 Nov 2013 00:50:13 +0100 Received: from ndokos by nat-pool-bos-t.redhat.com with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 14 Nov 2013 00:50:13 +0100 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 Nishiyama Nobuyuki writes: > Dear org-mode team. > > Hi > > org-mode is gread major mode in my emacs life. > > But, If this org-file is export to HTML, an indent will collapse. > > I wish keep indents... > I cannot reproduce it: the two code blocks render identically in my test. What does the resulting HTML file look like? Nick Org-mode version 8.2.3a (release_8.2.3a-195-ge4984e @ /home/nick/elisp/org-mode/lisp/) > Best regards. > > > test.org > > * Sample A > > #+BEGIN_SRC C++ > > #include "Eigen/Core" > > // Good layout. > // The indent is maintained. > int main() { > Eigen::Matrix3i m; > m << 1, 2, 3, > 4, 5, 6, > 7, 8, 9; > } > > #+END_SRC > > * Sample B > > #+BEGIN_SRC C++ > > #include "Eigen/Core" > > // Bad layout. > // The indent has collapsed. > int main() { > Eigen::Matrix3i m1; > m1 << 1, 2, 3, > 4, 5, 6, > 7, 8, 9; > } > > #+END_SRC >