emacs-orgmode
[Top][All Lists]
Advanced

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

Re: [O] Clojure Code Block Results not Tabularized


From: Christian Moe
Subject: Re: [O] Clojure Code Block Results not Tabularized
Date: Wed, 29 Jan 2014 08:57:52 +0100
User-agent: mu4e 0.9.9.5-dev6; emacs 24.3.1

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

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