Aloha all,

The noweb strip-export setting leaves empty lines in the export.

I have this ecm:

 #+name: foo
 #+begin_src elisp
 (+ 1 1)
 #+end_src

 #+name: bar
 #+header: :noweb strip-export
 #+begin_src elisp
 <<foo>>
 (+ 2 2)
 #+end_src

LaTeX export renders this:

 \begin{minted}[fontsize=\footnotesize]{elisp}
 (+ 1 1)
 \end{minted}

 \begin{minted}[fontsize=\footnotesize]{elisp}

 (+ 2 2)
 \end{minted}

Note the blank line before (+ 2 2).

I'd like this LaTeX output:

 \begin{minted}[fontsize=\footnotesize]{elisp}
 (+ 1 1)
 \end{minted}

 \begin{minted}[fontsize=\footnotesize]{elisp}
 (+ 2 2)
 \end{minted}

Is it possible?

All the best,
Tom

--
Thomas S. Dye
http://tsdye.online/tsdye

Reply via email to