From mboxrd@z Thu Jan 1 00:00:00 1970 From: Xavier Garrido Subject: Insert a line separator in table results Date: Wed, 16 Jul 2014 21:06:31 +0200 Message-ID: <53C6CD37.1030602@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:57632) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X7UXD-0004yP-TW for emacs-orgmode@gnu.org; Wed, 16 Jul 2014 15:06:45 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1X7UX4-0006ME-SJ for emacs-orgmode@gnu.org; Wed, 16 Jul 2014 15:06:35 -0400 Received: from mail-wg0-x22f.google.com ([2a00:1450:400c:c00::22f]:65139) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X7UX4-0006LT-LF for emacs-orgmode@gnu.org; Wed, 16 Jul 2014 15:06:26 -0400 Received: by mail-wg0-f47.google.com with SMTP id b13so1367130wgh.6 for ; Wed, 16 Jul 2014 12:06:25 -0700 (PDT) Received: from [192.168.1.41] (7.89.195.77.rev.sfr.net. [77.195.89.7]) by mx.google.com with ESMTPSA id gq4sm12146748wib.8.2014.07.16.12.06.23 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Wed, 16 Jul 2014 12:06:24 -0700 (PDT) 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: "emacs-orgmode@gnu.org" Dear orgers, I would like to programmatically insert a line separator when generating a table result. Below is a minimal working example with =python= src block #+BEGIN_SRC python x = [("label 1", "label 2", "label 3"), ("-", "-", "-")] x.append((4, 5, 6)) x.append((7, 8, 9)) return (x) #+END_SRC #+RESULTS: | label 1 | label 2 | label 3 | | - | - | - | | 4 | 5 | 6 | | 7 | 8 | 9 | Is there any possibility to interpret dash as line separator ? Thanks for your help, Xavier