This says that
Noweb insertions now honor prefix characters that appear before
<<reference>>
.
And because of that trying to use
#+BEGIN_SRC clojure :noweb-ref dep-cljsbuild
[lein-figwheel "0.5.9"]
[lein-cljsbuild "1.1.5" :exclusions [[org.clojure/clojure]]]
#+END_SRC
with
:plugins [<<dep-cljsbuild>>]
gives me
:plugins [[lein-figwheel "0.5.9"]
:plugins [[lein-cljsbuild "1.1.5" :exclusions [[org.clojure/clojure]]]]
which is obviously not what I want. I can workaround issue by moving <<dep-cljsbuild>>
to the new line, but it looks ugly.
Could you recommend any proper way to point org-mode that in particular place I don't want prefixes to be preserved? (Or at least how to disable it globally)