Function: org-export-format-reference
org-export-format-reference is a byte-compiled function defined in
ox.el.gz.
Signature
(org-export-format-reference REFERENCE)
Documentation
Format REFERENCE into a string.
REFERENCE is a number representing a reference, as returned by
org-export-new-reference, which see.
Source Code
;; Defined in /usr/src/emacs/lisp/org/ox.el.gz
(defun org-export-format-reference (reference)
"Format REFERENCE into a string.
REFERENCE is a number representing a reference, as returned by
`org-export-new-reference', which see."
(format "org%07x" reference))