Function: org-element-bold-parser

org-element-bold-parser is a byte-compiled function defined in org-element.el.gz.

Signature

(org-element-bold-parser)

Documentation

Parse bold object at point, if any.

When at a bold object, return a list whose car is bold and cdr is a plist with :begin, :end, :contents-begin and
:contents-end and :post-blank keywords. Otherwise, return
nil.

Assume point is at the first star marker.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-element.el.gz
(defun org-element-bold-parser ()
  "Parse bold object at point, if any.

When at a bold object, return a list whose car is `bold' and cdr
is a plist with `:begin', `:end', `:contents-begin' and
`:contents-end' and `:post-blank' keywords.  Otherwise, return
nil.

Assume point is at the first star marker."
  (org-element--parse-generic-emphasis "*" 'bold))