Function: org-ascii-underline

org-ascii-underline is a byte-compiled function defined in ox-ascii.el.gz.

Signature

(org-ascii-underline UNDERLINE CONTENTS INFO)

Documentation

Transcode UNDERLINE from Org to ASCII.

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

Source Code

;; Defined in /usr/src/emacs/lisp/org/ox-ascii.el.gz
;;;; Underline

(defun org-ascii-underline (_underline contents _info)
  "Transcode UNDERLINE from Org to ASCII.
CONTENTS is the text with underline markup.  INFO is a plist
holding contextual information."
  (format "_%s_" contents))