Function: org-texinfo-radio-target

org-texinfo-radio-target is a byte-compiled function defined in ox-texinfo.el.gz.

Signature

(org-texinfo-radio-target RADIO-TARGET TEXT INFO)

Documentation

Transcode a RADIO-TARGET object from Org to Texinfo.

TEXT is the text of the target. INFO is a plist holding contextual information.

Source Code

;; Defined in /usr/src/emacs/lisp/org/ox-texinfo.el.gz
;;;; Radio Target

(defun org-texinfo-radio-target (radio-target text info)
  "Transcode a RADIO-TARGET object from Org to Texinfo.
TEXT is the text of the target.  INFO is a plist holding
contextual information."
  (format "@anchor{%s}%s"
	  (org-texinfo--get-node radio-target info)
	  text))