Function: org-ascii-timestamp

org-ascii-timestamp is a byte-compiled function defined in ox-ascii.el.gz.

Signature

(org-ascii-timestamp TIMESTAMP CONTENTS INFO)

Documentation

Transcode a TIMESTAMP object from Org to ASCII.

CONTENTS is nil. INFO is a plist holding contextual information.

Source Code

;; Defined in /usr/src/emacs/lisp/org/ox-ascii.el.gz
;;;; Timestamp

(defun org-ascii-timestamp (timestamp _contents info)
  "Transcode a TIMESTAMP object from Org to ASCII.
CONTENTS is nil.  INFO is a plist holding contextual information."
  (org-ascii-plain-text (org-timestamp-translate timestamp) info))