Function: org-ascii-bold

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

Signature

(org-ascii-bold BOLD CONTENTS INFO)

Documentation

Transcode BOLD from Org to ASCII.

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

Source Code

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

;;;; Bold

(defun org-ascii-bold (_bold contents _info)
  "Transcode BOLD from Org to ASCII.
CONTENTS is the text with bold markup.  INFO is a plist holding
contextual information."
  (format "*%s*" contents))