From mboxrd@z Thu Jan 1 00:00:00 1970 From: Pete Ley Subject: Conditionally export certain sections based on predefined types Date: Thu, 04 Dec 2014 10:59:39 -0800 Message-ID: <87iohrb5r8.fsf@enterprise.sectorq.net> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:47709) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Xwbd4-0002Wi-7K for emacs-orgmode@gnu.org; Thu, 04 Dec 2014 14:00:03 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Xwbcv-0004Uj-6c for emacs-orgmode@gnu.org; Thu, 04 Dec 2014 13:59:54 -0500 Received: from mail-pa0-x232.google.com ([2607:f8b0:400e:c03::232]:39310) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Xwbcu-0004Tb-Vf for emacs-orgmode@gnu.org; Thu, 04 Dec 2014 13:59:45 -0500 Received: by mail-pa0-f50.google.com with SMTP id bj1so18680066pad.9 for ; Thu, 04 Dec 2014 10:59:43 -0800 (PST) Received: from enterprise.sectorq.net (75-164-201-116.ptld.qwest.net. [75.164.201.116]) by mx.google.com with ESMTPSA id pk1sm26765456pdb.78.2014.12.04.10.59.41 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 04 Dec 2014 10:59:42 -0800 (PST) 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 Not a great title, but I'm not sure how to explain what I want succinctly. I'm trying to write a resume, and I'd like to be able to export different versions of it for different things. For instance, I don't necessarily want to include my hourly job experience when applying for a programming job, and I'd like to exclude my programming and other technical experience for certain job applications. I'm thinking something like this * Work experience ** Some hourly job :PROPERTIES: :export-exclude: programming :END: * Programming languages :PROPERTIES: :export-exclude: hourly :END: Obviously it doesn't have to be properties, but I thought that was the most clear way to explain what I'm looking for. So I'd like to be able to export a specific type of resume, like a "programming" resume which excludes hourly jobs or an "hourly" resume which excludes programming language proficiency. Is there a way to do this already? Is there a canonical way to create this functionality? I'd rather not start hacking without a good idea of how more knowledgeable users might tackle this.