Function: org-odt-underline
org-odt-underline is a byte-compiled function defined in ox-odt.el.gz.
Signature
(org-odt-underline UNDERLINE CONTENTS INFO)
Documentation
Transcode UNDERLINE from Org to ODT.
CONTENTS is the text with underline markup. INFO is a plist holding contextual information.
Source Code
;; Defined in /usr/src/emacs/lisp/org/ox-odt.el.gz
;;;; Underline
(defun org-odt-underline (_underline contents _info)
"Transcode UNDERLINE from Org to ODT.
CONTENTS is the text with underline markup. INFO is a plist
holding contextual information."
(format "<text:span text:style-name=\"%s\">%s</text:span>"
"Underline" contents))