Function: org-odt-italic

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

Signature

(org-odt-italic ITALIC CONTENTS INFO)

Documentation

Transcode ITALIC from Org to ODT.

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

Source Code

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

(defun org-odt-italic (_italic contents _info)
  "Transcode ITALIC from Org to ODT.
CONTENTS is the text with italic markup.  INFO is a plist holding
contextual information."
  (format "<text:span text:style-name=\"%s\">%s</text:span>"
	  "Emphasis" contents))