From mboxrd@z Thu Jan  1 00:00:00 1970
From: Christian Moe <mail@christianmoe.com>
Subject: Re: [ODT][BUG] Custom link types in ODT footnotes
Date: Tue, 24 Feb 2015 16:28:58 +0100
Message-ID: <m2ioerz5tx.fsf@christianmoe.com>
References: <m2y4nnz8fs.fsf@christianmoe.com>
	<87h9ub4apq.fsf@nicolasgoaziou.fr>
Mime-Version: 1.0
Content-Type: text/plain
Return-path: <emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org>
Received: from eggs.gnu.org ([2001:4830:134:3::10]:52799)
	by lists.gnu.org with esmtp (Exim 4.71)
	(envelope-from <mail@christianmoe.com>) id 1YQHPg-00039A-BU
	for emacs-orgmode@gnu.org; Tue, 24 Feb 2015 10:28:45 -0500
Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71)
	(envelope-from <mail@christianmoe.com>) id 1YQHPd-0004Qy-2Q
	for emacs-orgmode@gnu.org; Tue, 24 Feb 2015 10:28:44 -0500
Received: from mail2.b1.hitrost.net ([91.185.211.205]:32771)
	by eggs.gnu.org with esmtp (Exim 4.71)
	(envelope-from <mail@christianmoe.com>) id 1YQHPc-0004PR-KT
	for emacs-orgmode@gnu.org; Tue, 24 Feb 2015 10:28:40 -0500
In-reply-to: <87h9ub4apq.fsf@nicolasgoaziou.fr>
List-Id: "General discussions about Org-mode." <emacs-orgmode.gnu.org>
List-Unsubscribe: <https://lists.gnu.org/mailman/options/emacs-orgmode>,
	<mailto:emacs-orgmode-request@gnu.org?subject=unsubscribe>
List-Archive: <http://lists.gnu.org/archive/html/emacs-orgmode>
List-Post: <mailto:emacs-orgmode@gnu.org>
List-Help: <mailto:emacs-orgmode-request@gnu.org?subject=help>
List-Subscribe: <https://lists.gnu.org/mailman/listinfo/emacs-orgmode>,
	<mailto:emacs-orgmode-request@gnu.org?subject=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: Nicolas Goaziou <mail@nicolasgoaziou.fr>
Cc: orgmode list <emacs-orgmode@gnu.org>


Hi,

I confirm it's fixed. Thanks! That was fast.

Yours,
Christian

Nicolas Goaziou writes:

> Hello,
>
> Christian Moe <mail@christianmoe.com> writes:
>
>> custom link types created with org-add-link-type seem to no longer work
>> in ODT footnotes. 
>>
>> The expected output of the below example is for the bbdb link to be
>> replaced with /nil/ (I don't have Stallman in my address book) and for
>> SCREAMING LINK to be upcased if you've executed the source block. This
>> works in both body text and footnote for HTML export, but only in body
>> text, not footnote, for ODT. 
>>
>> ------- Example: --------
>>
>> #+title: Test of custom link types in footnotes
>>
>> This is a bbdb:R.*Stallman link.[fn:1] 
>>
>> #+begin_src emacs-lisp
>>   (org-add-link-type "scream" nil
>>                      (lambda (path desc format)
>>                        (upcase desc)))
>> #+end_src
>>
>> This is a silly [[scream:234][screaming link]] for testing.[fn:2]
>>
>> * Footnotes
>>
>> [fn:1] This is a bbdb:R.*Stallman link in a footnote.
>>
>> [fn:2] This is a silly [[scream:234][screaming link]] in a footnote.
>>
>> --------
>
> This should be fixed. Thank you.
>
>
> Regards,