Function: org-html-italic

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

Signature

(org-html-italic ITALIC CONTENTS INFO)

Documentation

Transcode ITALIC from Org to HTML.

CONTENTS is the text with italic markup. INFO is a plist holding contextual information.

Source Code

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

(defun org-html-italic (_italic contents info)
  "Transcode ITALIC from Org to HTML.
CONTENTS is the text with italic markup.  INFO is a plist holding
contextual information."
  (format
   (or (cdr (assq 'italic (plist-get info :html-text-markup-alist))) "%s")
   contents))