From 5a0e0d0bb30e5ace9775a3625464f9b62f946880 Mon Sep 17 00:00:00 2001 From: mattkae Date: Sat, 4 Mar 2023 15:42:17 -0500 Subject: Improved markdown mode to include highlights --- README.md | 2 ++ lisp/markdown.el | 4 +++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 1fe6f06..7a4ddb3 100644 --- a/README.md +++ b/README.md @@ -16,6 +16,8 @@ Emacs configuration file - Find references: `M-?` - Kill buffer: `C-x k` +## Fonts +- We use the `monaco` font that can be found in your repository. ## Per-language Features diff --git a/lisp/markdown.el b/lisp/markdown.el index 0523913..9713d36 100644 --- a/lisp/markdown.el +++ b/lisp/markdown.el @@ -8,7 +8,9 @@ :mode (("README\\.md\\'" . gfm-mode) ("\\.md\\'" . markdown-mode) ("\\.markdown\\'" . markdown-mode)) - :init (setq markdown-command "pandoc")) + :init (setq markdown-command "pandoc") + :config + (setq markdown-fontify-code-blocks-natively t)) (provide 'markdown) ;;; markdown.el ends here -- cgit v1.2.1