Function: org-html-radio-target

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

Signature

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

Documentation

Transcode a RADIO-TARGET object from Org to HTML.

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

Source Code

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

(defun org-html-radio-target (radio-target text info)
  "Transcode a RADIO-TARGET object from Org to HTML.
TEXT is the text of the target.  INFO is a plist holding
contextual information."
  (let ((ref (org-html--reference radio-target info)))
    (org-html--anchor ref text nil info)))