Function: org-html-target

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

Signature

(org-html-target TARGET CONTENTS INFO)

Documentation

Transcode a TARGET object from Org to HTML.

CONTENTS is nil. INFO is a plist holding contextual information.

Source Code

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

(defun org-html-target (target _contents info)
  "Transcode a TARGET object from Org to HTML.
CONTENTS is nil.  INFO is a plist holding contextual
information."
  (let ((ref (org-html--reference target info)))
    (org-html--anchor ref nil nil info)))