Function: org-element-strike-through-parser

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

Signature

(org-element-strike-through-parser)

Documentation

Parse strike-through object at point, if any.

When at a strike-through object, return a list whose car is strike-through 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 plus sign marker.

Source Code

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

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

When at a strike-through object, return a list whose car is
`strike-through' 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 plus sign marker."
  (org-element--parse-generic-emphasis "+" 'strike-through))