Soapy Smith writes:
> The problem is that the results inserted into the org document should be
> tabularized.  This is not happening using the latest version of org.
> Here is the simplest possible example:
>
> #+begin_src clojure :results value raw
> [1 2 3 4]
> #+end_src
>
> #+RESULTS:
> [1 2 3 4]

Hi,

I don't use Clojure so I may get this wrong, but: isn't this what you
would expect with `:results raw'?

Cf. these Python examples:

#+begin_src python :results raw
  a = (1, 2, 3)
  return a
#+end_src

#+RESULTS:
(1, 2, 3)

#+begin_src python
  a = (1, 2, 3)
  return a
#+end_src

#+RESULTS:
| 1 | 2 | 3 |

Yours,
Christian

Reply via email to