[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Org-mode: toggle between source block and its results
From: |
Jean Louis |
Subject: |
Re: Org-mode: toggle between source block and its results |
Date: |
Tue, 7 Feb 2023 13:05:05 +0300 |
User-agent: |
Mutt/2.2.9+54 (af2080d) (2022-11-21) |
* Jonas Damm <emails@jonas-damm.de> [2023-02-06 21:03]:
> Hi, I would like to make a presentation about music in org-present.
> I want to show musical lilypond snippets, but I don't want the source
> block itself to show. Is it possible to toggle visablitly of the
> source block and its results?
Here is one possible solution:
(info "(org) Blocks") <-- evaluate
which implies you would then export "visible only".
I have tried it this way:
#+STARTUP: hideblocks
#+STARTUP: nohideblocks
#+BEGIN_SRC emacs-lisp
(message "Hello")
#+END_SRC
#+RESULTS:
: Hello
And I could see only result, and not the block.
--
Jean
Take action in Free Software Foundation campaigns:
https://www.fsf.org/campaigns
In support of Richard M. Stallman
https://stallmansupport.org/
- Org-mode: toggle between source block and its results, Jonas Damm, 2023/02/06
- Re: Org-mode: toggle between source block and its results, H. Dieter Wilhelm, 2023/02/06
- Re: Org-mode: toggle between source block and its results, Jonas Damm, 2023/02/07
- Re: Org-mode: toggle between source block and its results, H. Dieter Wilhelm, 2023/02/07
- Re: Org-mode: toggle between source block and its results, Bruno Barbier, 2023/02/07
- Re: Org-mode: toggle between source block and its results, Jonas Damm, 2023/02/08
- Re: Org-mode: toggle between source block and its results, Jean Louis, 2023/02/08
- Re: Org-mode: toggle between source block and its results, Jonas Damm, 2023/02/09
Re: Org-mode: toggle between source block and its results,
Jean Louis <=