From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nicolas Goaziou Subject: Re: :results raw for html export problem Date: Tue, 31 Jan 2017 13:32:56 +0100 Message-ID: <87vasvmmtj.fsf@nicolasgoaziou.fr> References: Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:48323) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cYXcN-0003OX-OP for emacs-orgmode@gnu.org; Tue, 31 Jan 2017 07:33:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cYXcJ-0006Z0-RT for emacs-orgmode@gnu.org; Tue, 31 Jan 2017 07:33:03 -0500 Received: from relay4-d.mail.gandi.net ([217.70.183.196]:37435) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cYXcJ-0006Y1-Kn for emacs-orgmode@gnu.org; Tue, 31 Jan 2017 07:32:59 -0500 In-Reply-To: (Lawrence Bottorff's message of "Mon, 30 Jan 2017 15:12:26 -0500") 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" To: Lawrence Bottorff Cc: emacs-orgmode Mailinglist Hello, Lawrence Bottorff writes: > Here's some Lisp in an org file that I export to html > > #+begin_src lisp :exports both :results raw You shouldn't use ":exports both" and ":results raw" together. With :results raw, Org has no possible way to tell whether the results of the code block are already inserted in the document or not. Since you request ":exports both", it always re-generates them upon exporting. You may want to use ":exports code" and insert results manually in the buffer. Regards, -- Nicolas Goaziou