|
@@ -138,6 +138,7 @@
|
|
(:with-entities nil "e" org-export-with-entities)
|
|
(:with-entities nil "e" org-export-with-entities)
|
|
(:with-fixed-width nil ":" org-export-with-fixed-width)
|
|
(:with-fixed-width nil ":" org-export-with-fixed-width)
|
|
(:with-footnotes nil "f" org-export-with-footnotes)
|
|
(:with-footnotes nil "f" org-export-with-footnotes)
|
|
|
|
+ (:with-inlinetasks nil "inline" org-export-with-inlinetasks)
|
|
(:with-plannings nil "p" org-export-with-planning)
|
|
(:with-plannings nil "p" org-export-with-planning)
|
|
(:with-priority nil "pri" org-export-with-priority)
|
|
(:with-priority nil "pri" org-export-with-priority)
|
|
(:with-special-strings nil "-" org-export-with-special-strings)
|
|
(:with-special-strings nil "-" org-export-with-special-strings)
|
|
@@ -405,9 +406,7 @@ e.g. \"f:nil\"."
|
|
(defcustom org-export-headline-levels 3
|
|
(defcustom org-export-headline-levels 3
|
|
"The last level which is still exported as a headline.
|
|
"The last level which is still exported as a headline.
|
|
|
|
|
|
-Inferior levels will produce itemize lists when exported. Note
|
|
|
|
-that a numeric prefix argument to an exporter function overrides
|
|
|
|
-this setting.
|
|
|
|
|
|
+Inferior levels will produce itemize lists when exported.
|
|
|
|
|
|
This option can also be set with the #+OPTIONS line, e.g. \"H:2\"."
|
|
This option can also be set with the #+OPTIONS line, e.g. \"H:2\"."
|
|
:group 'org-export-general
|
|
:group 'org-export-general
|
|
@@ -444,6 +443,13 @@ e.g. \"e:nil\"."
|
|
:group 'org-export-general
|
|
:group 'org-export-general
|
|
:type 'boolean)
|
|
:type 'boolean)
|
|
|
|
|
|
|
|
+(defcustom org-export-with-inlinetasks t
|
|
|
|
+ "Non-nil means inlinetasks should be exported.
|
|
|
|
+This option can also be set with the #+OPTIONS line,
|
|
|
|
+e.g. \"inline:nil\"."
|
|
|
|
+ :group 'org-export-general
|
|
|
|
+ :type 'boolean)
|
|
|
|
+
|
|
(defcustom org-export-with-planning nil
|
|
(defcustom org-export-with-planning nil
|
|
"Non-nil means include planning info in export.
|
|
"Non-nil means include planning info in export.
|
|
This option can also be set with the #+OPTIONS: line,
|
|
This option can also be set with the #+OPTIONS: line,
|
|
@@ -453,9 +459,6 @@ e.g. \"p:t\"."
|
|
|
|
|
|
(defcustom org-export-with-priority nil
|
|
(defcustom org-export-with-priority nil
|
|
"Non-nil means include priority cookies in export.
|
|
"Non-nil means include priority cookies in export.
|
|
-
|
|
|
|
-When nil, remove priority cookies for export.
|
|
|
|
-
|
|
|
|
This option can also be set with the #+OPTIONS line,
|
|
This option can also be set with the #+OPTIONS line,
|
|
e.g. \"pri:t\"."
|
|
e.g. \"pri:t\"."
|
|
:group 'org-export-general
|
|
:group 'org-export-general
|
|
@@ -1814,6 +1817,8 @@ tag."
|
|
(and (memq with-tasks '(todo done))
|
|
(and (memq with-tasks '(todo done))
|
|
(not (eq todo-type with-tasks)))
|
|
(not (eq todo-type with-tasks)))
|
|
(and (consp with-tasks) (not (member todo with-tasks))))))))
|
|
(and (consp with-tasks) (not (member todo with-tasks))))))))
|
|
|
|
+ ;; Check inlinetask.
|
|
|
|
+ (inlinetask (not (plist-get options :with-inlinetasks)))
|
|
;; Check timestamp.
|
|
;; Check timestamp.
|
|
(timestamp
|
|
(timestamp
|
|
(case (plist-get options :with-timestamps)
|
|
(case (plist-get options :with-timestamps)
|