[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Avoid "Scheme implementation" prompt on export
From: |
Roi Martin |
Subject: |
Re: Avoid "Scheme implementation" prompt on export |
Date: |
Tue, 15 Oct 2024 22:56:22 +0200 |
Bruno Barbier <brubar.cs@gmail.com> writes:
> My patch fixes a real bug though. Are you sure org is using the correct
> scheme implementation when doing "C-c C-c" ?
I think it works fine if you set the `org-babel-load-languages' variable
in the elisp code block:
(org-babel-do-load-languages 'org-babel-load-languages '((emacs-lisp .
t)
(scheme . t)))
> I just checked exporting my example to html: it works for me.
Have you tried with the htmlize package installed?
(package-install 'htmlize)
> I'm launching emacs like this:
>
> emacs -q test_ob-scheme-bug.org
>
> Maybe something is wrong in your configuration ?
I did my last tests launching emacs like this:
emacs -Q --init-directory=initdir -L ~/src/org-mode/lisp
test_ob-scheme-bug.org
I also simplified the elisp code block a bit:
#+begin_src elisp
(setq package-archives
'(("gnu" . "https://elpa.gnu.org/packages/")
("nongnu" . "https://elpa.nongnu.org/nongnu/")))
(setq package-check-signature t)
(package-initialize)
(package-install 'geiser)
(package-install 'geiser-chez)
(package-install 'geiser-racket)
(package-install 'htmlize)
(setq-local org-confirm-babel-evaluate nil)
(org-babel-do-load-languages 'org-babel-load-languages '((emacs-lisp
. t)
(scheme .
t)))
(org-export-to-file 'html "test.html")
#+end_src
I attached my test file. I hope it helps.
Best,
Roi
test_ob-scheme-bug.org
Description: Text document
- Re: Avoid "Scheme implementation" prompt on export, (continued)
Re: Avoid "Scheme implementation" prompt on export, Ihor Radchenko, 2024/10/19
Re: Avoid "Scheme implementation" prompt on export, Roi Martin, 2024/10/15