From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thorsten Jolitz Subject: Re: [Exporter] How to save 'info' plist for later use? Date: Wed, 10 Jul 2013 14:21:30 +0200 Message-ID: <871u76r4fp.fsf@gmail.com> References: <87a9lur8d0.fsf@gmail.com> <51DD46DB.8080803@mpip-mainz.mpg.de> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:46972) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UwtP2-0001ak-DI for emacs-orgmode@gnu.org; Wed, 10 Jul 2013 08:21:53 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UwtOx-0007fd-DX for emacs-orgmode@gnu.org; Wed, 10 Jul 2013 08:21:48 -0400 Received: from plane.gmane.org ([80.91.229.3]:58858) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UwtOx-0007fY-6o for emacs-orgmode@gnu.org; Wed, 10 Jul 2013 08:21:43 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1UwtOw-0001wW-5Q for emacs-orgmode@gnu.org; Wed, 10 Jul 2013 14:21:42 +0200 Received: from g231110193.adsl.alicedsl.de ([92.231.110.193]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 10 Jul 2013 14:21:42 +0200 Received: from tjolitz by g231110193.adsl.alicedsl.de with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 10 Jul 2013 14:21:42 +0200 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 Robert Klein writes: Hi Robert, > I'm currently playing around with retrieving options, e.g. functions like: > #+begin_src elisp > (defun org-find-export-option (file option-name &optional backend) ... thanks, that brought me on the right track, I was searching for functions containing '-info-', but '-options-' would have been the better search term: ,------------------------------------------------------------------------ | org-export--get-global-options org-export--get-inbuffer-options | org-export--get-subtree-options org-export-backend-options | org-export-get-all-options `------------------------------------------------------------------------ So during the buffer parsing I can collect relevant options and build an 'info-like' plist with them and the complete parse-tree for later use. -- cheers, Thorsten