Function: org-odt-node-property

org-odt-node-property is a byte-compiled function defined in ox-odt.el.gz.

Signature

(org-odt-node-property NODE-PROPERTY CONTENTS INFO)

Documentation

Transcode a NODE-PROPERTY element from Org to ODT.

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

Source Code

;; Defined in /usr/src/emacs/lisp/org/ox-odt.el.gz
;;;; Node Property

(defun org-odt-node-property (node-property _contents _info)
  "Transcode a NODE-PROPERTY element from Org to ODT.
CONTENTS is nil.  INFO is a plist holding contextual
information."
  (org-odt--encode-plain-text
   (format "%s:%s"
	   (org-element-property :key node-property)
	   (let ((value (org-element-property :value node-property)))
	     (if value (concat " " value) "")))))