From 88cf920079d6cf4d8d0c70bfd274ae90eb76529c Mon Sep 17 00:00:00 2001 From: Lucas Sta Maria Date: Sat, 7 Dec 2024 23:04:21 -0500 Subject: [PATCH] fix(emacs): include `htmlize` dependency for org-html-export Problem: my blog used to reliably produce syntax-highlighted code blocks following the syntax highlighting of this Emacs configuration. However, recently, that stopped. This was a result of `htmlize` not being up to date: > Warning (emacs): Cannot fontify source block (htmlize.el >= 1.34 required). > Falling back to plain text. (see `org-html-htmlize-output-type') To resolve this error, I pull in the dependency explicitly, which should result in org export using the correct, updated version. Signed-off-by: Lucas Sta Maria --- .emacs.d/include/priime-elisp.el | 1 + 1 file changed, 1 insertion(+) diff --git a/.emacs.d/include/priime-elisp.el b/.emacs.d/include/priime-elisp.el index ba8f3e2..38f9d51 100644 --- a/.emacs.d/include/priime-elisp.el +++ b/.emacs.d/include/priime-elisp.el @@ -9,6 +9,7 @@ (use-package f :straight t) (use-package ht :straight t) (use-package dash :straight t) +(use-package htmlize :straight t) (provide 'priime-elisp)