On Mon, Jun 19, 2017, 12:59 AM numbchild@gmail.com <numbchild@gmail.com> wrote:
I found noweb reference with argument `<<src-block-name(args)>>` issue.

It has been working fine for me for org and sh source blocks. 

And this does not work:
```org
#+NAME: sh-print-something
#+BEGIN_SRC sh :var str=""
echo "$str"
#+END_SRC

#+BEGIN_SRC sh :results output :noweb yes
echo "hello, "
<<sh-print-something(str="stardiviner")>>
#+END_SRC

You need to use :noweb-ref option  in the source blocks header args to set the noweb-ref code reference; #+NAME will not work.

I have to have used noweb for the very first time in this recent project: https://raw.githubusercontent.com/kaushalmodi/eless/master/eless.org ; search for ":noweb-ref" in there to get an idea. 
--

Kaushal Modi