From mboxrd@z Thu Jan 1 00:00:00 1970 From: eythanweg@gmail.com (Eythan Weg) Subject: Re: Odd export of a selected tree Date: Sun, 23 Oct 2011 12:29:04 -0400 Message-ID: <87ty6zk6y7.fsf@gmail.com> References: <87aaafyuxc.fsf@gmail.com> <87k47xgvp4.fsf@gnu.org> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([140.186.70.92]:36959) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RI0v9-00023R-Lq for emacs-orgmode@gnu.org; Sun, 23 Oct 2011 12:29:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RI0v8-0005Xb-GT for emacs-orgmode@gnu.org; Sun, 23 Oct 2011 12:29:11 -0400 Received: from mail-iy0-f169.google.com ([209.85.210.169]:56524) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RI0v8-0005XJ-DL for emacs-orgmode@gnu.org; Sun, 23 Oct 2011 12:29:10 -0400 Received: by iagf6 with SMTP id f6so8600882iag.0 for ; Sun, 23 Oct 2011 09:29:09 -0700 (PDT) In-Reply-To: <87k47xgvp4.fsf@gnu.org> (Bastien's message of "Sat, 22 Oct 2011 12:35:51 +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: Bastien Cc: emacs-orgmode@gnu.org Bastien Sat, 22 Oct 2011 12:35:51 +0200 Hi Eythan, eythanweg@gmail.com (Eythan Weg) writes: > Hi, > > Consider a file containing something like: > > * Test :export: > * Test 2 > > > And now export it, say to ascii format. > > I get a buffer containing: > > 1 Test :export: > > > Is this expected? Use (setq org-export-with-tags nil) or #+OPTIONS: tags:nil directly in your org buffer. The :export: tag will still do its job. Yes, thank you. Eythan