From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Eric Schulte" Subject: Re: html export Date: Sun, 20 Jun 2010 11:14:42 -0700 Message-ID: <877hlt606l.fsf@gmail.com> References: <871vc28js3.fsf@gmail.com> <48C8312A-7793-49D0-AA26-24AB15AC662F@tsdye.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from [140.186.70.92] (port=46877 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OQP2d-00071Q-LV for emacs-orgmode@gnu.org; Sun, 20 Jun 2010 14:14:48 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OQP2c-0005I2-7j for emacs-orgmode@gnu.org; Sun, 20 Jun 2010 14:14:47 -0400 Received: from mail-pw0-f41.google.com ([209.85.160.41]:41983) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OQP2c-0005Hx-3B for emacs-orgmode@gnu.org; Sun, 20 Jun 2010 14:14:46 -0400 Received: by pwi7 with SMTP id 7so3186449pwi.0 for ; Sun, 20 Jun 2010 11:14:45 -0700 (PDT) In-Reply-To: <48C8312A-7793-49D0-AA26-24AB15AC662F@tsdye.com> (Thomas S. Dye's message of "Sun, 20 Jun 2010 06:11:17 -1000") List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: "Thomas S. Dye" Cc: Org Mode "Thomas S. Dye" writes: [...] > Removing the blank line doesn't work for me either. > > Org-mode version 6.36trans (release_6.36.291.gaf90f) > Hmm, I just tried the above again using the HEAD (same org-version output as you have above) of the org-mode git repository and a minimal emacs config, and it *is* working for me, so maybe your problems will be resolved with an update of org-mode, or maybe they're due to something in your config? > > Ah, I'm finally able to reproduce the problem in my larger file. Here > is an example: > > * No results exported > > #+srcname: problem > #+begin_src R > b <- 4 > #+end_src > > #+results: problem > [[file:~/Public/projects/903_adzes/r/sr-nb-scatter.png]] > > The key is that srcname: and results: have the same name. Changing > the results: name works. > > * Results exported > > #+srcname: problem > #+begin_src R > b <- 4 > #+end_src > > #+results: problem-not > [[file:~/Public/projects/903_adzes/r/sr-nb-scatter.png]] > Yes, the key with the above is that babel by default only exports the code of a code block, which means that if there are results in the buffer they will be removed on export. If you want both the code and the results to be exported then change #+srcname: problem #+begin_src R b <- 4 #+end_src to #+srcname: problem #+begin_src R :exports both b <- 4 #+end_src Hope this helps -- Eric > > All the best, > Tom