Function: org-export--skip-timestamp-p

org-export--skip-timestamp-p is a byte-compiled function defined in ox.el.gz.

Signature

(org-export--skip-timestamp-p WITH-TIMESTAMPS TIMESTAMP-TYPE)

Documentation

Decides whether to skip a timestamp during export.

WITH-TIMESTAMPS should be a valid option for org-export-with-timestamps. TIMESTAMP-TYPE should be the
:type property of a timestamp element.

Source Code

;; Defined in /usr/src/emacs/lisp/org/ox.el.gz
(defun org-export--skip-timestamp-p (with-timestamps timestamp-type)
  "Decides whether to skip a timestamp during export.
WITH-TIMESTAMPS should be a valid option for
`org-export-with-timestamps'.  TIMESTAMP-TYPE should be the
`:type' property of a timestamp element."
  (cl-case with-timestamps
    ((nil) t)
    (active
     (not (memq timestamp-type '(active active-range diary))))
    (active-exclude-diary
     (not (memq timestamp-type '(active active-range))))
    (inactive
     (not (memq timestamp-type '(inactive inactive-range))))))