emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [O] Using property values in source code blocks


From: Joon Ro
Subject: Re: [O] Using property values in source code blocks
Date: Thu, 7 Jul 2016 10:53:22 -0500



> Date: Thu, 7 Jul 2016 08:48:03 -0700
> From: address@hidden
> To: address@hidden
> Subject: Re: [O] Using property values in source code blocks
> CC: address@hidden
>
> On Wed, 6 Jul 2016, Joon Ro wrote:
>
> >
> >
> >
> >> I have no idea what you are asking.
> >>
>
> [snip]
>
> > I'm sorry if my explanation was not clear, but the original example I
> > provided shows exactly what I wanted to do:
>
> And my response showed how to do it: you construct a src block with a
> noweb reference that places the *results* of evaluating another src block
> in the code (or comment). The src block in the named in the noweb
> reference handles retrieving the property value, viz.
>
> --8<---------------cut here---------------end--------------->8---
>
> * Subtree
> :PROPERTIES:
> :DUMMY: Value
> :END:
>
> #+NAME: get-property
> #+BEGIN_SRC emacs-lisp :var prop="prop"
> (car (org-property-values prop))
> #+END_SRC
>
> #+BEGIN_SRC shell :noweb yes
>
> echo <<get-property(prop="DUMMY")>>
>
> #+END_SRC
>
> #+RESULTS:
> : Value
>
> --8<---------------cut here---------------end--------------->8---
>
>
> See
>
> (info "(org) Noweb reference syntax")
>
>
> Chuck
>

I see. I must have misunderstood that example. I will try that - thank you so much!



reply via email to

[Prev in Thread] Current Thread [Next in Thread]