emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[O] noweb strip-export


From: Thomas S. Dye
Subject: [O] noweb strip-export
Date: Wed, 26 Jun 2019 09:06:01 -1000
User-agent: mu4e 0.9.18; emacs 26.2

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

[Prev in Thread] Current Thread [Next in Thread]