Function: org-export--get-export-attributes

org-export--get-export-attributes is a byte-compiled function defined in ox.el.gz.

Signature

(org-export--get-export-attributes &optional BACKEND SUBTREEP VISIBLE-ONLY BODY-ONLY)

Documentation

Return properties related to export process, as a plist.

Optional arguments BACKEND, SUBTREEP, VISIBLE-ONLY and BODY-ONLY are like the arguments with the same names of function org-export-as.

Source Code

;; Defined in /usr/src/emacs/lisp/org/ox.el.gz
(defun org-export--get-export-attributes
    (&optional backend subtreep visible-only body-only)
  "Return properties related to export process, as a plist.
Optional arguments BACKEND, SUBTREEP, VISIBLE-ONLY and BODY-ONLY
are like the arguments with the same names of function
`org-export-as'."
  (list :export-options (delq nil
			      (list (and subtreep 'subtree)
				    (and visible-only 'visible-only)
				    (and body-only 'body-only)))
	:back-end backend
	:translate-alist (org-export-get-all-transcoders backend)
	:exported-data (make-hash-table :test #'eq :size 4001)))