** results org raw wrap
:PROPERTIES:
:DATE: 2011-03-02
:END:
#+begin_src sh :results output org :exports none
cat <<EOF
- first
- second
EOF
#+end_src
#+name:
#+BEGIN_ORG
- first
- second
#+END_ORG
*** Version 1
:PROPERTIES:
:DATE: 2011-03-02
:END:
This version only prints the org code for the table, but does not interprets it.
#+begin_src R :exports both :results output raw
cat(
"|--|--|\n",
"|name|[[./pdf1.pdf]]|\n",
"|--|--|\n"
)
#+end_src
*** Version 2
:PROPERTIES:
:DATE: 2011-03-02
:END:
This version prints the table including the graph as expected, but
:results is used twice as a header argument.
#+begin_src R :results output :exports both :results raw
cat(
"|--|--|\n",
"|name|[[./pdf1.pdf]]|\n",
"|--|--|\n"
)
#+end_src
*** Version 3
:PROPERTIES:
:DATE: 2011-03-02
:END:
Finally this version does only export the R code
#+begin_src R :exports both :results raw
cat(
"|--|--|\n",
"|name|[[./pdf1.pdf]]|\n",
"|--|--|\n"
)
#+end_src