Function: org-beamer-bold

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

Signature

(org-beamer-bold BOLD CONTENTS INFO)

Documentation

Transcode BOLD object into Beamer code.

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

Source Code

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

;;;; Bold

(defun org-beamer-bold (bold contents _info)
  "Transcode BOLD object into Beamer code.
CONTENTS is the text being bold.  INFO is a plist used as
a communication channel."
  (format "\\alert%s{%s}"
	  (or (org-beamer--element-has-overlay-p bold) "")
	  contents))