Function: org-ascii-footnote-reference
org-ascii-footnote-reference is a byte-compiled function defined in
ox-ascii.el.gz.
Signature
(org-ascii-footnote-reference FOOTNOTE-REFERENCE CONTENTS INFO)
Documentation
Transcode a FOOTNOTE-REFERENCE element from Org to ASCII.
CONTENTS is nil. INFO is a plist holding contextual information.
Source Code
;; Defined in /usr/src/emacs/lisp/org/ox-ascii.el.gz
;;;; Footnote Definition
;; Footnote Definitions are ignored. They are compiled at the end of
;; the document, by `org-ascii-inner-template'.
;;;; Footnote Reference
(defun org-ascii-footnote-reference (footnote-reference _contents info)
"Transcode a FOOTNOTE-REFERENCE element from Org to ASCII.
CONTENTS is nil. INFO is a plist holding contextual information."
(format "[%s]" (org-export-get-footnote-number footnote-reference info)))