Function: org-md-bold

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

Signature

(org-md-bold BOLD CONTENTS INFO)

Documentation

Transcode BOLD object into Markdown format.

CONTENTS is the text within bold markup. INFO is a plist used as a communication channel.

Source Code

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

;;;; Bold

(defun org-md-bold (_bold contents _info)
  "Transcode BOLD object into Markdown format.
CONTENTS is the text within bold markup.  INFO is a plist used as
a communication channel."
  (format "**%s**" contents))