Function: org-html-underline
org-html-underline is a byte-compiled function defined in
ox-html.el.gz.
Signature
(org-html-underline UNDERLINE CONTENTS INFO)
Documentation
Transcode UNDERLINE from Org to HTML.
CONTENTS is the text with underline markup. INFO is a plist holding contextual information.
Source Code
;; Defined in /usr/src/emacs/lisp/org/ox-html.el.gz
;;;; Underline
(defun org-html-underline (_underline contents info)
"Transcode UNDERLINE from Org to HTML.
CONTENTS is the text with underline markup. INFO is a plist
holding contextual information."
(format (or (cdr (assq 'underline (plist-get info :html-text-markup-alist)))
"%s")
contents))