[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: substitutions in html export?
From: |
Berry, Charles |
Subject: |
Re: substitutions in html export? |
Date: |
Sun, 17 Jul 2022 18:54:11 +0000 |
Kevin,
> On Jul 17, 2022, at 10:18 AM, kevinbanjo <kevinbanjo@gmail.com> wrote:
>
>
>
> On Sun, Jul 17, 2022 at 7:24 AM Ihor Radchenko <yantar92@gmail.com> wrote:
> See inline calls in
> https://orgmode.org/manual/Evaluating-Code-Blocks.html#Evaluating-Code-Blocks
>
> I did this and it didn't work (but the one outside the export block did):
>
> #+title:test
>
> #+name: numbers
> #+begin_src emacs-lisp :exports none
> 40
> #+end_src
>
> #+begin_export html
>
> the result is call_numbers()
>
> #+end_export
The export block provides text that is to be used "as is" by the html backend.
So, "call_numbers()" is treated as html.
You need to construct the export block programmatically. Maybe something like
#+begin_src emacs-lisp :results html :exports results :var num=numbers()
(format "the result is %d" num )
#+end_src
HTH,
Chuck
Re: substitutions in html export?, kevinbanjo, 2022/07/17