From 9c2f4a5907964ffec478d1b345e1e4c19d1c2696 Mon Sep 17 00:00:00 2001 From: Lucien Cartier-Tilet Date: Sun, 7 Aug 2022 12:56:44 +0200 Subject: [PATCH] [Emacs] Add possibility to run asynchronously org code blocks --- org/config/emacs.org | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/org/config/emacs.org b/org/config/emacs.org index cf3d5c6..e3863d9 100644 --- a/org/config/emacs.org +++ b/org/config/emacs.org @@ -4533,6 +4533,14 @@ The corresponding code is as follows: <>) #+END_SRC +Some languages can run asynchronously with the help of ~ob-async~. +#+begin_src emacs-lisp +(use-package ob-async + :straight (:build t) + :defer t + :after (org ob)) +#+end_src + A package I use from time to time is ~ob-latex-as-png~ which allows me to easily convert a LaTeX snippet into a PNG, regardless of the exporter I use afterwards. Its installation is pretty simple: