Function: org-element-italic-parser

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

Signature

(org-element-italic-parser)

Documentation

Parse italic object at point, if any.

When at an italic object, return a list whose car is italic 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 slash marker.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-element.el.gz
;;;; Italic

(defun org-element-italic-parser ()
  "Parse italic object at point, if any.

When at an italic object, return a list whose car is `italic' 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 slash marker."
  (org-element--parse-generic-emphasis "/" 'italic))