From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nicolas Goaziou Subject: Re: [BUG] New exporter exports TOC twice Date: Wed, 24 Apr 2013 13:50:39 +0200 Message-ID: <87bo949mgg.fsf@gmail.com> References: <87k3ns89lk.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([208.118.235.92]:35636) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UUyDl-0003cP-OR for emacs-orgmode@gnu.org; Wed, 24 Apr 2013 07:50:47 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UUyDi-000480-M3 for emacs-orgmode@gnu.org; Wed, 24 Apr 2013 07:50:45 -0400 Received: from mail-wi0-x22e.google.com ([2a00:1450:400c:c05::22e]:58687) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UUyDi-00047f-FR for emacs-orgmode@gnu.org; Wed, 24 Apr 2013 07:50:42 -0400 Received: by mail-wi0-f174.google.com with SMTP id m6so7336949wiv.7 for ; Wed, 24 Apr 2013 04:50:41 -0700 (PDT) In-Reply-To: <87k3ns89lk.fsf@gmail.com> (Thorsten Jolitz's message of "Wed, 24 Apr 2013 13:13:43 +0200") 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: Thorsten Jolitz Cc: emacs-orgmode@gnu.org Hello, Thorsten Jolitz writes: > Exporting a Worg file with this header (#+TOC: headlines 2) > > ,----------------------------------------------------------------------------------------- > | #+OPTIONS: H:3 num:nil \n:nil @:t ::t |:t ^:{} -:t f:t *:t TeX:t LaTeX:t > | skip:nil d:(HIDE) tags:not-in-toc > | #+TOC: headlines 2 > | #+STARTUP: align fold nodlcheck hidestars oddeven lognotestate hideblocks > | #+SEQ_TODO: TODO(t) INPROGRESS(i) WAITING(w@) | DONE(d) CANCELED(c@) > | #+TAGS: Write(w) Update(u) Fix(f) Check(c) noexport(n) > | #+TITLE: Header arguments and result types in Org Babel > | #+AUTHOR: Thorsten Jolitz, Eric Schulte > | #+EMAIL: tj[at]data-driven[dot]de > | #+LANGUAGE: en > | #+LINK_UP: index.php > | #+LINK_HOME: http://orgmode.org/worg/ > | #+EXPORT_EXCLUDE_TAGS: noexport > | > | For a complete header argument reference see the Org-mode manual's page > | which lists all > | [[http://orgmode.org/manual/Specific-header-arguments.html][Specific-header-arguments]]. > | This page holds ancillary notes and tricks which have not made it into > | the manual. > | > | * Generally use =verbatim= when using =drawer=, =raw= or =org= > | We often want to add =verbatim= (which inhibits interpretation as a > | value, which can often result in a list or table result), when > | inserting results directly into the buffer using =drawer=, =raw= or > | =org= which don't do tabular interpretation. [...] > `----------------------------------------------------------------------------------------- > > exports the TOC twice in HTML export and ASCII export. If you don't specify a toc item in the OPTIONS line, Org will use the value of `org-export-with-toc', which is non-nil by default. So, your example is equivalent to: #+OPTIONS: toc:t #+TOC: headline 2 Hence you get two tables of contents. Regards, -- Nicolas Goaziou