Function: markdown-reload-extensions

markdown-reload-extensions is an interactive and byte-compiled function defined in markdown-mode.el.

Signature

(markdown-reload-extensions)

Documentation

Check settings, update font-lock keywords and hooks, and re-fontify buffer.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/markdown-mode-20260321.143/markdown-mode.el
;;; Extension Framework =======================================================

(defun markdown-reload-extensions ()
  "Check settings, update font-lock keywords and hooks, and re-fontify buffer."
  (interactive)
  (when (derived-mode-p 'markdown-mode)
    ;; Refontify buffer
    (font-lock-flush)))