From mboxrd@z Thu Jan 1 00:00:00 1970 From: Eric Abrahamsen Subject: Re: Export HTML with Properties and Tags Date: Sun, 27 Apr 2014 11:17:04 +0800 Message-ID: <87siozwjf3.fsf@ericabrahamsen.net> References: <87vbtvdi66.fsf@quasar.esben-stien.name> <87r44jtwjo.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:47100) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WeFYc-0001VT-Vw for emacs-orgmode@gnu.org; Sat, 26 Apr 2014 23:15:17 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WeFYW-0004Hh-Nn for emacs-orgmode@gnu.org; Sat, 26 Apr 2014 23:15:10 -0400 Received: from plane.gmane.org ([80.91.229.3]:58279) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WeFYW-0004FZ-H9 for emacs-orgmode@gnu.org; Sat, 26 Apr 2014 23:15:04 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1WeFYV-0007J9-DV for emacs-orgmode@gnu.org; Sun, 27 Apr 2014 05:15:03 +0200 Received: from 114.248.6.105 ([114.248.6.105]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 27 Apr 2014 05:15:03 +0200 Received: from eric by 114.248.6.105 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 27 Apr 2014 05:15:03 +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 Nick Dokos writes: > Esben Stien writes: > >> Is there any way to export everything when exporting to HTML? >> >> I have f.ex this heading: >> >> **** foo :BAR: >> :PROPERTIES: >> :hukarz: 1337 >> :quux: 1337 >> :END: >> >> Is there any command to specify that HTML export should export everything? > > #+OPTIONS: prop:t > > will allow you to export properties so that's everything in this case, > but in general it depends on what you mean by "everything". Check the > manual > > (info "(org) Export settings") > > for various settings. The underlying lisp variables are named > > org-export-with-XXXX > > for various values of XXXX, so you can also do > > C-h v org-export-with- > > to get a completion buffer with all of them. I often use this > technique when I'm looking for something whose name I cannot > quite remember. If you need the property drawers formatted in a certain way, you can attach filters to the variable org-export-filter-property-drawer-functions. Filters might take a bit of reading up, if you haven't used them before.