Function: org-html-bold

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

Signature

(org-html-bold BOLD CONTENTS INFO)

Documentation

Transcode BOLD from Org to HTML.

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

Source Code

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

;;;; Bold

(defun org-html-bold (_bold contents info)
  "Transcode BOLD from Org to HTML.
CONTENTS is the text with bold markup.  INFO is a plist holding
contextual information."
  (format (or (cdr (assq 'bold (plist-get info :html-text-markup-alist))) "%s")
	  contents))