Function: org-element-footnote-reference-interpreter

org-element-footnote-reference-interpreter is a byte-compiled function defined in org-element.el.gz.

Signature

(org-element-footnote-reference-interpreter FOOTNOTE-REFERENCE CONTENTS)

Documentation

Interpret FOOTNOTE-REFERENCE object as Org syntax.

CONTENTS is its definition, when inline, or nil.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-element.el.gz
(defun org-element-footnote-reference-interpreter (footnote-reference contents)
  "Interpret FOOTNOTE-REFERENCE object as Org syntax.
CONTENTS is its definition, when inline, or nil."
  (format "[fn:%s%s]"
	  (or (org-element-property :label footnote-reference) "")
	  (if contents (concat ":" contents) "")))