On Mon, May 28, 2018 at 12:32 PM, Frederick Giasson wrote:
> Hi Everybody,
>
> I am trying to have noweb references working with org-babel-detangle. Let's
> use this example:
>
> ```
> #+NAME: a
> #+BEGIN_SRC clojure
>
> (def a "a")
>
> #+END_SRC
>
> #+NAME: b
> #+BEGIN_SRC clojure
>
> (def a "b")
Hi Everybody,
I am trying to have noweb references working with org-babel-detangle. Let's
use this example:
```
#+NAME: a
#+BEGIN_SRC clojure
(def a "a")
#+END_SRC
#+NAME: b
#+BEGIN_SRC clojure
(def a "b")
#+END_SRC
#+NAME: c
#+BEGIN_SRC clojure
(def a "c")
#+END_SRC
#+NAME: a
#+BEGIN_SR