Hello,

Lixin Chin <lixinc...@gmail.com> writes:

> As per the subject, when a heading line is included within a
> `#+BEGIN_EXPORT backend ... #+END_EXPORT' block, it breaks the parsing
> of the block, which is instead split into multiple `paragraph' elements.
>
> See the attached example (test.org), and associate exports (test.tex)
> and (test.html).
>
> Tested with `emacs -Q -l minimal-org.el', with the org package installed
> from http://orgmode.org/elpa/, org-20161102.
>
> * Test heading
>
> #+BEGIN_EXPORT latex
> Text which should appear in \LaTeX{} exports, but not HTML.
> #+END_EXPORT
>
> #+BEGIN_EXPORT html
> * HTML only heading
> Text which should appear in HTML exports, but not \LaTeX{}.
> #+END_EXPORT

You need to escape the pseudo-headline with a comma.

  #+BEGIN_EXPORT html
  ,* HTML only heading
  Text which should appear in HTML exports, but not \LaTeX{}.
  #+END_EXPORT


Regards,

-- 
Nicolas Goaziou

Reply via email to