Function: org-beamer-radio-target

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

Signature

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

Documentation

Transcode a RADIO-TARGET object into Beamer code.

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

Source Code

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

(defun org-beamer-radio-target (radio-target text info)
  "Transcode a RADIO-TARGET object into Beamer code.
TEXT is the text of the target.  INFO is a plist holding
contextual information."
  (format "\\hypertarget%s{%s}{%s}"
	  (or (org-beamer--element-has-overlay-p radio-target) "")
	  (org-export-get-reference radio-target info)
	  text))