We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ffc207 commit c1ec450Copy full SHA for c1ec450
cider-grimoire.el
@@ -78,6 +78,11 @@ opposite of what that option dictates."
78
(with-current-buffer (cider-popup-buffer cider-grimoire-buffer t)
79
(read-only-mode -1)
80
(insert content)
81
+ (when (require 'markdown-mode nil 'noerror)
82
+ (markdown-mode)
83
+ (cider-popup-buffer-mode 1)
84
+ (when (fboundp 'markdown-toggle-fontify-code-blocks-natively)
85
+ (markdown-toggle-fontify-code-blocks-natively 1)))
86
(read-only-mode +1)
87
(goto-char (point-min))
88
(current-buffer)))
0 commit comments