From f86de3d2335a6a42363ffec26c8745bed4875c4d Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Sat, 21 Jan 2012 20:16:33 +0100 Subject: [PATCH] org-export: Export standard drawers by default * contrib/lisp/org-export.el (org-export-with-drawers): Export standard drawers by default. --- contrib/lisp/org-export.el | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/contrib/lisp/org-export.el b/contrib/lisp/org-export.el index 92171f8b9..a6b0bda71 100644 --- a/contrib/lisp/org-export.el +++ b/contrib/lisp/org-export.el @@ -276,10 +276,15 @@ If the value is `comment' insert it as a comment." :group 'org-export-general :type '(string :tag "Creator string")) -(defcustom org-export-with-drawers nil - "Non-nil means export with drawers like the property drawer. +(defcustom org-export-with-drawers t + "Non-nil means export contents of standard drawers. + When t, all drawers are exported. This may also be a list of -drawer names to export." +drawer names to export. This variable doesn't apply to +properties drawers. + +This option can also be set with the #+OPTIONS line, +e.g. \"d:nil\"." :group 'org-export-general :type '(choice (const :tag "All drawers" t)