From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nicolas Goaziou Subject: Re: Exporting columnviews Date: Fri, 06 Feb 2015 10:03:04 +0100 Message-ID: <87wq3vza2f.fsf@nicolasgoaziou.fr> References: <871tm5s5nu.fsf@nautilus.nautilus> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:54048) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YJenc-0003rS-Nz for emacs-orgmode@gnu.org; Fri, 06 Feb 2015 04:02:10 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YJenX-0005kh-PD for emacs-orgmode@gnu.org; Fri, 06 Feb 2015 04:02:04 -0500 Received: from relay4-d.mail.gandi.net ([2001:4b98:c:538::196]:51413) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YJenX-0005kR-9n for emacs-orgmode@gnu.org; Fri, 06 Feb 2015 04:01:59 -0500 In-Reply-To: <871tm5s5nu.fsf@nautilus.nautilus> (Lele Gaifax's message of "Wed, 04 Feb 2015 22:55:33 +0100") 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: Lele Gaifax Cc: emacs-orgmode@gnu.org Hello, Lele Gaifax writes: > I use Org (Emacs 24.4.90, with Org mode 8.2.10) to analyze and plan the > development of new projects/features, with a persistent columnview containing > a summary, something like the following: > > #+TITLE: Test > #+PROPERTY: Effort_ALL 1:00 2:00 3:00 4:00 5:00 6:00 7:00 8:00 > #+COLUMNS: %40ITEM(Item) %13Effort(Estimated){:} %CLOCKSUM(Spent) > > * Main > > #+BEGIN: columnview :hlines 1 :id local > | Item | Estimated | Spent | > |-----------------+-----------+-------| > | * Main | 3:00 | | > | ** Subpoint | 1:00 | | > | *** Subsubpoint | 1:00 | | > | ** Other | 2:00 | | > #+END: > > ** Subpoint > > *** Subsubpoint > :PROPERTIES: > :Effort: 1:00 > :END: > > ** Other > :PROPERTIES: > :Effort: 2:00 > :END: This is a silly bug actually: *...* is for bold markup, so *** is exported as a bold star. I'd rather not make an exception and modify bold parsing, so other characters should be inserted to represent headline's level. I find numbers too verbose. Replacing stars with dots is not possible either as "..." will be exported differently with some export back-ends. Maybe "* * *" instead of "***"? Any better idea? Regards, -- Nicolas Goaziou