org-babel-expand-noweb-references
org-babel-expand-noweb-references is a compiled Lisp function in `ob-core.el
'.
(org-babel-expand-noweb-references &optional INFO PARENT-BUFFER)
Expand Noweb references in the body of the current source code block.
For example the following reference would be replaced with the
body of the source-code block named 'example-block'.
<<example-block>>
Note that any text preceding the <<foo>> construct on a line will
be interposed between the lines of the replacement text. So for
example if <<foo>> is placed behind a comment, then the entire
replacement text will also be commented.
This function must be called from inside of the buffer containing
the source-code block which holds BODY.
In addition the following syntax can be used to insert the
results of evaluating the source-code block named 'example-block'.
<<example-block()>>
Any optional arguments can be passed to example-block by placing
the arguments inside the parenthesis following the convention
defined by `org-babel-lob'. For example
<<example-block(a=9)>>
would set the value of argument "a" equal to "9". Note that
these arguments are not evaluated in the current source-code
block but are passed literally to the "example-block".