Function: org-odt-bold

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

Signature

(org-odt-bold BOLD CONTENTS INFO)

Documentation

Transcode BOLD from Org to ODT.

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

Source Code

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

;;;; Bold

(defun org-odt-bold (_bold contents _info)
  "Transcode BOLD from Org to ODT.
CONTENTS is the text with bold markup.  INFO is a plist holding
contextual information."
  (format "<text:span text:style-name=\"%s\">%s</text:span>"
	  "Bold" contents))