Variable: markdown-ts-image-max-width

markdown-ts-image-max-width is a customizable variable defined in markdown-ts-mode.el.gz.

Value

window

Documentation

Maximum width of inline images in pixels.

When window, use the window body width. When a number, use that as the maximum pixel width.

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-image-max-width 'window
  "Maximum width of inline images in pixels.
When `window', use the window body width.  When a number, use
that as the maximum pixel width."
  :type '(choice (const  :tag "Window width" window)
                 (natnum :tag "Pixel width"))
  :version "31.1"
  :package-version "1.0")