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