Function: org-latex-node-property

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

Signature

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

Documentation

Transcode a NODE-PROPERTY element from Org to LaTeX.

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

Source Code

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

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