From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mark Edgington Subject: Re: org-export-with-broken-links doesn't apply to footnotes Date: Sat, 25 Jun 2016 13:16:06 +0000 (UTC) Message-ID: References: <87ziqd9cn7.fsf@saiph.selenimh> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:55167) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bGnRg-0002hS-KG for emacs-orgmode@gnu.org; Sat, 25 Jun 2016 09:16:25 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bGnRa-0002CG-JD for emacs-orgmode@gnu.org; Sat, 25 Jun 2016 09:16:23 -0400 Received: from plane.gmane.org ([80.91.229.3]:43622) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bGnRa-0002CB-CI for emacs-orgmode@gnu.org; Sat, 25 Jun 2016 09:16:18 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1bGnRU-0003rV-Lg for emacs-orgmode@gnu.org; Sat, 25 Jun 2016 15:16:12 +0200 Received: from 209.140.243.106 ([209.140.243.106]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 25 Jun 2016 15:16:12 +0200 Received: from edgimar by 209.140.243.106 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 25 Jun 2016 15:16:12 +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" To: emacs-orgmode@gnu.org Nicolas Goaziou nicolasgoaziou.fr> writes: > No, it isn't. However I could only reproduce it with empty footnote > definitions. > > In any case, this is now fixed. Thank you. I am providing a minimal example that still exhibits the problem for me (on the latest git rev): ----------- BEGIN EXAMPLE ----------- * Heading 1 :ignore: ** Heading 2 :export: *** Heading 3 :ignore: Here's a footnote[fn:20]. * Footnotes :export: [fn:20] Footnote content. ----------- END EXAMPLE ----------- If you narrow the buffer to Heading 2, and try to export, it fails. Among other things, I have the following in my .emacsd file: (require 'ox-extra) (ox-extras-activate '(ignore-headlines))