From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jonathan Leech-Pepin Subject: [new exporter] Links in definition list titles are not exported Date: Wed, 18 Jul 2012 11:29:17 -0400 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Return-path: Received: from eggs.gnu.org ([208.118.235.92]:35371) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SrWBo-0003EC-6p for emacs-orgmode@gnu.org; Wed, 18 Jul 2012 11:29:29 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SrWBi-0006z4-Rs for emacs-orgmode@gnu.org; Wed, 18 Jul 2012 11:29:24 -0400 Received: from mail-wi0-f177.google.com ([209.85.212.177]:44401) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SrWBi-0006yr-Lv for emacs-orgmode@gnu.org; Wed, 18 Jul 2012 11:29:18 -0400 Received: by wibhm11 with SMTP id hm11so1087358wib.12 for ; Wed, 18 Jul 2012 08:29:17 -0700 (PDT) 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: Org Mode Mailing List Given the org file #+begin_src org ,* List Test ,** Plain List ,- A ,- [[http://www.google.com][google]] ,- [[http://www.google.com]] ,** Ordered List ,1. A ,2. [[http://www.google.com][google]] ,3. [[http://www.google.com]] ,** Definition List ,- A :: A ,- [[http://www.google.com][google]] :: Google ,- [[http://www.google.com]] :: google #+end_src org If I try to export to e-ascii =M-x org-export-dispatch RET A= I obtain the following export (omitting TOC and title) #+begin_ascii 1 List Test =========== [google] http://www.google.com 1.1 Plain List ~~~~~~~~~~~~~~ - A - [google] - [http://www.google.com] [google] http://www.google.com 1.2 Ordered List ~~~~~~~~~~~~~~~~ 1. A 2. [google] 3. [http://www.google.com] [google] http://www.google.com 1.3 Definition List ~~~~~~~~~~~~~~~~~~~ A: A [[http://www.google.com][google]]: Google [[http://www.google.com]]: google #+end_ascii This also occurs in e-html and e-latex. In the old exporter these would have also been formatted the same way they are in ordered and plain lists. Is this change by design? Regards, Jon