Hello,
"Andreas Kiermeier" <[email protected]> writes:
> --- begin test.org ----
>
> #+STARTUP: content indent hidestars fninline
>
> #+PROPERTY: header-args:R :session *R* :cache no
>
> #+PROPERTY: header-args+ :results output
>
> #+PROPERTY: header-args+ :exports results
Here, you prevent source blocks' contents from being exported.
[...]
> #+begin_src R :results none :exports code
>
> ls()
>
> #+end_src
This one is exported because ":exports code"
>
>
>
>
> * Data Analysis Source Code
>
>
>
> #+INCLUDE: "test.R" src R
This one, which is equivalent to
#+begin_src R
ls()
#+end_src
defaults to :exports results and, therefore, is not exported.
Regards,
--
Nicolas Goaziou