From mboxrd@z Thu Jan 1 00:00:00 1970 From: joe Subject: Re: body-only for single file html export Date: Mon, 20 Dec 2010 09:03:03 -0600 Message-ID: <20101220150303.GB13435@chemistry.coe.edu> References: <20101218184623.GA22172@chemistry.coe.edu> <87y67lct1q.fsf@norang.ca> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from [140.186.70.92] (port=43792 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PUhFt-00080I-Mq for emacs-orgmode@gnu.org; Mon, 20 Dec 2010 10:02:31 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PUhFs-0000zP-7T for emacs-orgmode@gnu.org; Mon, 20 Dec 2010 10:02:29 -0500 Received: from [192.133.84.44] (port=52289 helo=chemistry.coe.edu) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PUhFs-0000yi-48 for emacs-orgmode@gnu.org; Mon, 20 Dec 2010 10:02:28 -0500 Content-Disposition: inline In-Reply-To: <87y67lct1q.fsf@norang.ca> 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 Cc: emacs-orgmode@gnu.org On Sun, Dec 19, 2010 at 05:10:57PM -0500, Bernt Hansen wrote: > joe writes: > > > I would like to use the ":body-only" option for exporting html (and > > ocassionally latex). Reading through the docs and maillist, I think I > > understand how to do this if I'm publishing an entire project. I > > don't have a project, though... > > > > I use emacs for editing html textareas and on-the-fly html editing, > > and want to export a single file using the body-only option. > > > > I was hoping I could simply do something like this in the template but > > it doesn't seem to work: > > > > #+OPTIONS: body-only:t > > > > If someone can help me with an org-mode-export-html function that sets > > the body-only option for a single file (without setting up a project), > > I would be very grateful. > > > > Thank you much! > > Hi Joe, > > (global-set-key (kbd " x") 'bh/test) > > (defun bh/test (arg) > (interactive "P") > (org-export-as-html arg nil nil nil t)) > > then f9-x in an org-mode buffer will export as body-only and put a copy > in the kill ring so you can paste it. > > HTH, > Bernt Bernt, YES! Thank you...this is just what I needed. I also learned a little about lisp. A question for org-mode developers or expert users: Is there a design reason an export option like "body-only" can't be set using the #+OPTIONS directive? Just curious... Thanks, Joe