From 726211491bcbef564c21df6600b14265f51f11d9 Mon Sep 17 00:00:00 2001 From: Carsten Dominik Date: Wed, 1 Apr 2009 08:56:28 +0200 Subject: [PATCH] Inline tasks: Better docs --- lisp/org-inlinetask.el | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/lisp/org-inlinetask.el b/lisp/org-inlinetask.el index 121ae1811..60e0245a3 100644 --- a/lisp/org-inlinetask.el +++ b/lisp/org-inlinetask.el @@ -86,13 +86,20 @@ the value of this variable." "What should be done with inlinetasks upon export? Possible values: -nil Remove entirely +nil Remove entirely, headline and \"content\" arrow Insert heading in bold, preceeded by an arrow arrow+content Insert arrow and headline, add content below in an - #+begin_example box (ugly, but works for now)" + #+begin_example box (ugly, but works for now) + +The \"content\" of an inline task is the material below the planning +line and any drawers, up to a lines wit the same number of stars, +but containing only the word END." :group 'org-inlinetask :group 'org-export-general - :type 'boolean) + :type '(choice + (const :tag "Remove entirely" nil) + (const :tag "Headline preceeded by arrow" arrow) + (const :tag "Arrow, headline, + content" arrow+content))) (defvar org-odd-levels-only) (defvar org-keyword-time-regexp)