Function: org-element-clock-interpreter
org-element-clock-interpreter is a byte-compiled function defined in
org-element.el.gz.
Signature
(org-element-clock-interpreter CLOCK _)
Documentation
Interpret CLOCK element as Org syntax.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-element.el.gz
(defun org-element-clock-interpreter (clock _)
"Interpret CLOCK element as Org syntax."
(concat "CLOCK: "
(org-element-timestamp-interpreter
(org-element-property :value clock) nil)
(let ((duration (org-element-property :duration clock)))
(and duration
(concat " => "
(apply 'format
"%2s:%02s"
(org-split-string duration ":")))))))