Function: markdown-ts--remove-image-overlays

markdown-ts--remove-image-overlays is a byte-compiled function defined in markdown-ts-mode.el.gz.

Signature

(markdown-ts--remove-image-overlays)

Documentation

Remove all inline image overlays from the current buffer.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/markdown-ts-mode.el.gz
(defun markdown-ts--remove-image-overlays ()
  "Remove all inline image overlays from the current buffer."
  (dolist (ov (overlays-in (point-min) (point-max)))
    (when (overlay-get ov 'markdown-ts-image)
      (delete-overlay ov))))