Re: [O] Issues with org-babel-detangle and :comments noweb

2018-06-15 Thread Grant Rettke
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

[O] Issues with org-babel-detangle and :comments noweb

2018-05-28 Thread Frederick Giasson
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