Function: org-element-underline-parser
org-element-underline-parser is a byte-compiled function defined in
org-element.el.gz.
Signature
(org-element-underline-parser)
Documentation
Parse underline object at point, if any.
When at an underline object, return a list whose car is
underline 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 underscore marker.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-element.el.gz
;;;; Underline
(defun org-element-underline-parser ()
"Parse underline object at point, if any.
When at an underline object, return a list whose car is
`underline' 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 underscore marker."
(org-element--parse-generic-emphasis "_" 'underline))