Variable: markdown-ts-display-remote-inline-images

markdown-ts-display-remote-inline-images is a customizable variable defined in markdown-ts-mode.el.gz.

Value

nil

Documentation

How to display remote inline images.

When nil, do not display remote images. When download, fetch the image into a temporary buffer and display it.

Remote images are skipped by default for security.

This variable was added, or its default value changed, in unknown version unknown.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/markdown-ts-mode.el.gz
(defcustom markdown-ts-display-remote-inline-images nil
  "How to display remote inline images.
When nil, do not display remote images.  When `download', fetch the
image into a temporary buffer and display it.

Remote images are skipped by default for security."
  :type '(choice (const :tag "Skip remote images" nil)
                 (const :tag "Download remote images" download))
  :version "31.1"
  :package-version "1.0")