contrib/lisp/org-export: Add omitted persistent properties
* contrib/lisp/org-export.el (org-export-persistent-properties-list): Add omitted persistent properties. This patch also updates documentation with regards to persistent properties.
This commit is contained in:
parent
4aace47474
commit
10ea126b36
|
@ -620,7 +620,7 @@ while every other back-end will ignore it."
|
||||||
;; the current buffer, through the "#+include:" keyword. It is
|
;; the current buffer, through the "#+include:" keyword. It is
|
||||||
;; mainly used to verify that no infinite recursive inclusion
|
;; mainly used to verify that no infinite recursive inclusion
|
||||||
;; happens.
|
;; happens.
|
||||||
;; - category :: persistent
|
;; - category :: local
|
||||||
;; - type :: list of strings
|
;; - type :: list of strings
|
||||||
|
|
||||||
;; + `inherited-properties' :: Properties of the headline ancestors
|
;; + `inherited-properties' :: Properties of the headline ancestors
|
||||||
|
@ -668,13 +668,6 @@ while every other back-end will ignore it."
|
||||||
;; - type :: symbol
|
;; - type :: symbol
|
||||||
;; - update :: `org-export-update-info'
|
;; - update :: `org-export-update-info'
|
||||||
|
|
||||||
;; + `previous-section-number' :: Numbering of the previous
|
|
||||||
;; headline. As it might not be practical for direct use, the
|
|
||||||
;; function `org-export-get-headline-level' is provided
|
|
||||||
;; to extract useful information out of it.
|
|
||||||
;; - category :: local
|
|
||||||
;; - type :: vector
|
|
||||||
|
|
||||||
;; + `section-numbers' :: Non-nil means transcoding should add
|
;; + `section-numbers' :: Non-nil means transcoding should add
|
||||||
;; section numbers to headlines.
|
;; section numbers to headlines.
|
||||||
;; - category :: option
|
;; - category :: option
|
||||||
|
@ -707,7 +700,7 @@ while every other back-end will ignore it."
|
||||||
|
|
||||||
;; + `total-loc' :: Contains total lines of code accumulated by source
|
;; + `total-loc' :: Contains total lines of code accumulated by source
|
||||||
;; blocks with the "+n" option so far.
|
;; blocks with the "+n" option so far.
|
||||||
;; - category :: option
|
;; - category :: persistent
|
||||||
;; - type :: integer
|
;; - type :: integer
|
||||||
;; - update :: `org-export-handle-code'
|
;; - update :: `org-export-handle-code'
|
||||||
|
|
||||||
|
@ -1108,8 +1101,9 @@ retrieved."
|
||||||
;; between headlines' beginning position and their numbering.
|
;; between headlines' beginning position and their numbering.
|
||||||
|
|
||||||
(defconst org-export-persistent-properties-list
|
(defconst org-export-persistent-properties-list
|
||||||
'(:code-refs :headline-alist :headline-offset :headline-offset :parse-tree
|
'(:back-end :code-refs :headline-alist :headline-numbering :headline-offset
|
||||||
:point-max :seen-footnote-labels :total-loc :use-select-tags)
|
:parse-tree :point-max :seen-footnote-labels :target-list
|
||||||
|
:total-loc :use-select-tags)
|
||||||
"List of persistent properties.")
|
"List of persistent properties.")
|
||||||
|
|
||||||
(defconst org-export-persistent-properties nil
|
(defconst org-export-persistent-properties nil
|
||||||
|
|
Loading…
Reference in New Issue