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!