Variable: markdown-disable-tooltip-prompt

markdown-disable-tooltip-prompt is a customizable variable defined in markdown-mode.el.

Value

nil

Documentation

Disable prompt for tooltip when inserting a link or image.

If non-nil, markdown-insert-link and markdown-insert-link will not prompt the user to insert a tooltip text for the given link or image.

This variable was added, or its default value changed, in markdown-mode version 2.5.

Source Code

;; Defined in ~/.emacs.d/elpa/markdown-mode-20260321.143/markdown-mode.el
(defcustom markdown-disable-tooltip-prompt nil
  "Disable prompt for tooltip when inserting a link or image.

If non-nil, `markdown-insert-link' and `markdown-insert-link'
will not prompt the user to insert a tooltip text for the given
link or image."
  :group 'markdown
  :type 'boolean
  :safe 'booleanp
  :package-version '(markdown-mode . "2.5"))