Function: markdown-ts-toggle-hide-markup
markdown-ts-toggle-hide-markup is an interactive and byte-compiled
function defined in markdown-ts-mode.el.gz.
Signature
(markdown-ts-toggle-hide-markup)
Documentation
Toggle hiding of Markdown markup delimiters in the current buffer.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/markdown-ts-mode.el.gz
(defun markdown-ts-toggle-hide-markup ()
"Toggle hiding of Markdown markup delimiters in the current buffer."
(interactive)
(setq markdown-ts-hide-markup (not markdown-ts-hide-markup))
(markdown-ts--set-hide-markup markdown-ts-hide-markup))