markdown-mode icon indicating copy to clipboard operation
markdown-mode copied to clipboard

Feature idea: Render gfm checkboxes as widgets

Open hmelman opened this issue 7 years ago • 1 comments

Would be neat to render gfm checkboxes as actual widgets (from the emacs widget package used in customize) such as toggle or checkbox when markdown-toggle-markup-hiding is enabled.

hmelman avatar Jul 28 '18 12:07 hmelman

I've been doing the following in my markdown-mode-hook and it's been great. Clicking with the mouse or hitting RET with point in them works seemlessly.

(push '("[ ]" . ?🔲) prettify-symbols-alist)
(push '("[x]" . ?✅) prettify-symbols-alist)
(prettify-symbols-mode)

hmelman avatar Dec 01 '21 02:12 hmelman