Function: markdown-unfontify-region-wiki-links
markdown-unfontify-region-wiki-links is an interactive and
byte-compiled function defined in markdown-mode.el.
This command is obsolete since 2.8.
Signature
(markdown-unfontify-region-wiki-links FROM TO)
Documentation
Remove wiki link faces from the region specified by FROM and TO.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/markdown-mode-20260321.143/markdown-mode.el
(defun markdown-unfontify-region-wiki-links (from to)
"Remove wiki link faces from the region specified by FROM and TO."
(interactive "*r")
(let ((modified (buffer-modified-p)))
(remove-text-properties from to '(font-lock-face markdown-link-face))
(remove-text-properties from to '(font-lock-face markdown-missing-link-face))
;; remove-text-properties marks the buffer modified in emacs 24.3,
;; undo that if it wasn't originally marked modified
(set-buffer-modified-p modified)))