|
From: | George Mauer |
Subject: | Re: How to get a block’s contents by name |
Date: | Fri, 27 Nov 2020 21:46:13 -0600 |
George Mauer writes:
> I'm trying to figure out how I could fetch the contents of another block by
> name from an elisp script
>
> I've seen `org-sbe` but I just want to get the block contents, (ideally
> with noweb and vars filled in - just as it would be tangled if we were to
> tangle it)
>
> How do I do that?
How about something like this?
(save-excursion
(goto-char (org-babel-find-named-block "b"))
(org-babel-expand-src-block))
[Prev in Thread] | Current Thread | [Next in Thread] |