Re: Text preceding noweb references is duplicated

2024-12-22 Thread Ihor Radchenko
8dcc <8dcc@gmail.com> writes: > Paragraph zero... > #+begin_src scheme :tangle org-output.scm :noweb yes > (list <>) >... > After calling `org-babel-tangle', the contents of 'org-output.scm' are: > > (list (+ 1 2) > (list (+ 3 4) > (list (+ 5 6)) > > Notice how all line

Text preceding noweb references is duplicated

2024-11-26 Thread 8dcc
Hello, Using the following Org file: Paragraph zero... #+begin_src scheme :tangle org-output.scm :noweb yes (list <>) #+end_src Paragraph one... #+begin_src scheme :tangle no :noweb-ref my-list-item (+ 1 2) #+end_src Paragraph two... #+begin_src scheme :tan