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 new syntax node of italic type
containing :begin, :end, :contents-begin and :contents-end and
:post-blank properties. 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 new syntax node of `italic' type
containing `:begin', `:end', `:contents-begin' and `:contents-end' and
`:post-blank' properties. Otherwise, return nil.
Assume point is at the first slash marker."
(org-element--parse-generic-emphasis "/" 'italic))