From mboxrd@z Thu Jan 1 00:00:00 1970 From: Frozenlock Subject: Org exports leaking into each other? Date: Tue, 10 Jan 2012 23:19:13 -0500 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Return-path: Received: from eggs.gnu.org ([140.186.70.92]:54715) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Rkpec-0001hX-MZ for emacs-orgmode@gnu.org; Tue, 10 Jan 2012 23:19:15 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Rkpeb-0004v1-Tm for emacs-orgmode@gnu.org; Tue, 10 Jan 2012 23:19:14 -0500 Received: from mail-iy0-f169.google.com ([209.85.210.169]:61524) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Rkpeb-0004ur-Qv for emacs-orgmode@gnu.org; Tue, 10 Jan 2012 23:19:13 -0500 Received: by iafj26 with SMTP id j26so546248iaf.0 for ; Tue, 10 Jan 2012 20:19:13 -0800 (PST) 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 I'm trying to do simultaneous exports of an org document by doing the following: #+begin_src emacs-lisp (org-export-as-ascii org-export-headline-levels) (org-export-as-html org-export-headline-levels) #+end_src Each export done manually is fine, but when done like my code, the .txt file seems to be leaking into the .html file. Any suggestion to fix this? Also, when I export a babel latex code, it asks me if I want to evaluate. When I I export a babel /emasc-lisp/ code however, it doesn't ask me for anything and goes straight by. I would like it to be executed at each export, if it's possible. Thank you in advance!