From mboxrd@z Thu Jan 1 00:00:00 1970 From: Carsten Dominik Subject: Re: Tables in ASCII export Date: Wed, 10 Feb 2010 16:49:51 +0100 Message-ID: <0FDD3B78-0FCF-4E44-8EC5-DD45021E4C85@gmail.com> References: <20100207.081516.232105719.mikelygee@no8wireless.co.nz> Mime-Version: 1.0 (Apple Message framework v936) Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NfEpN-00060L-UD for emacs-orgmode@gnu.org; Wed, 10 Feb 2010 10:50:09 -0500 Received: from [199.232.76.173] (port=51101 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NfEpN-00060D-L8 for emacs-orgmode@gnu.org; Wed, 10 Feb 2010 10:50:09 -0500 Received: from Debian-exim by monty-python.gnu.org with spam-scanned (Exim 4.60) (envelope-from ) id 1NfEpM-0005cy-MY for emacs-orgmode@gnu.org; Wed, 10 Feb 2010 10:50:09 -0500 Received: from mail-ew0-f211.google.com ([209.85.219.211]:56741) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1NfEpL-0005cl-OO for emacs-orgmode@gnu.org; Wed, 10 Feb 2010 10:50:07 -0500 Received: by ewy3 with SMTP id 3so148428ewy.33 for ; Wed, 10 Feb 2010 07:50:06 -0800 (PST) In-Reply-To: <20100207.081516.232105719.mikelygee@no8wireless.co.nz> List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Michael Gauland Cc: emacs-orgmode@gnu.org On Feb 6, 2010, at 8:15 PM, Michael Gauland wrote: > When I export tables to ASCII, I'd like the rows to expand as > necessary so the > full contents is visible. I've has a look at org-exp.el, but I'm at > a bit of a > loss as to where to start mucking in. Any pointers would be greatly > appreciated! Hi Michael, right now I only have a dirty trick, and even that is untested.... :-( (add-hook 'org-export-preprocess-hook (lambda () (let (org-format-transports-properties-p) (org-table-map-tables 'org-table-align)))) I will make a varaible for this, I think it would be useful to have, or even should be the default for ASCII export..... - Carsten