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 new syntax node of strike-through type containing :begin, :end, :contents-begin and :contents-end and :post-blank properties. 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 new syntax node of
`strike-through' type containing `:begin', `:end', `:contents-begin'
and `:contents-end' and `:post-blank' properties.  Otherwise, return
nil.

Assume point is at the first plus sign marker."
  (org-element--parse-generic-emphasis "+" 'strike-through))