Function: markdown-toggle-wiki-links

markdown-toggle-wiki-links is an interactive and byte-compiled function defined in markdown-mode.el.

Signature

(markdown-toggle-wiki-links &optional ARG)

Documentation

Toggle support for wiki links.

With a prefix argument ARG, enable wiki link support if ARG is positive, and disable it otherwise.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/markdown-mode-20260321.143/markdown-mode.el
(defun markdown-toggle-wiki-links (&optional arg)
  "Toggle support for wiki links.
With a prefix argument ARG, enable wiki link support if ARG is positive,
and disable it otherwise."
  (interactive (list (or current-prefix-arg 'toggle)))
  (setq markdown-enable-wiki-links
        (if (eq arg 'toggle)
            (not markdown-enable-wiki-links)
          (> (prefix-numeric-value arg) 0)))
  (when (called-interactively-p 'interactive)
    (message "markdown-mode wiki link support %s"
             (if markdown-enable-wiki-links "enabled" "disabled")))
  (markdown-reload-extensions))