Function: org-texinfo-target
org-texinfo-target is a byte-compiled function defined in
ox-texinfo.el.gz.
Signature
(org-texinfo-target TARGET CONTENTS INFO)
Documentation
Transcode a TARGET object from Org to Texinfo.
CONTENTS is nil. INFO is a plist holding contextual information.
Source Code
;; Defined in /usr/src/emacs/lisp/org/ox-texinfo.el.gz
;;;; Target
(defun org-texinfo-target (target _contents info)
"Transcode a TARGET object from Org to Texinfo.
CONTENTS is nil. INFO is a plist holding contextual
information."
(format "@anchor{%s}" (org-texinfo--get-node target info)))