From mboxrd@z Thu Jan 1 00:00:00 1970 From: Christian Moe Subject: Re: Clojure Code Block Results not Tabularized Date: Wed, 29 Jan 2014 08:57:52 +0100 Message-ID: References: <1390915384.2241.11.camel@raven-CM5571> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:38728) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W8PzN-0008BT-4i for emacs-orgmode@gnu.org; Wed, 29 Jan 2014 02:55:22 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1W8PzD-0000vd-H3 for emacs-orgmode@gnu.org; Wed, 29 Jan 2014 02:55:13 -0500 Received: from mail-forward2.uio.no ([2001:700:100:10::71]:52592) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W8PzD-0000nY-9n for emacs-orgmode@gnu.org; Wed, 29 Jan 2014 02:55:03 -0500 Received: from exim by mail-out2.uio.no with local-bsmtp (Exim 4.75) (envelope-from ) id 1W8Pyp-00046K-H4 for emacs-orgmode@gnu.org; Wed, 29 Jan 2014 08:54:39 +0100 In-reply-to: <1390915384.2241.11.camel@raven-CM5571> List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Soapy Smith Cc: emacs-orgmode@gnu.org 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