From mboxrd@z Thu Jan 1 00:00:00 1970 From: Sebastian Rose Subject: BUG ??? Cannot export custom link type to ASCII :-( Date: Sun, 05 Sep 2010 03:37:04 +0200 Message-ID: <877hj1nf7j.fsf@gmx.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from [140.186.70.92] (port=54129 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Os4AU-0000Qy-HO for emacs-orgmode@gnu.org; Sat, 04 Sep 2010 21:37:15 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1Os4AT-0002In-8T for emacs-orgmode@gnu.org; Sat, 04 Sep 2010 21:37:14 -0400 Received: from mailout-de.gmx.net ([213.165.64.23]:41044 helo=mail.gmx.net) by eggs.gnu.org with smtp (Exim 4.69) (envelope-from ) id 1Os4AS-0002Id-Ny for emacs-orgmode@gnu.org; Sat, 04 Sep 2010 21:37:13 -0400 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Emacs-orgmode mailing list Hi, I have problems to export a custom link type to ASCII. The code is here: http://github.com/SebastianRose/org-osm/blob/master/org-osm-link.el line 66 ff. HTML export works as expected. Example Org file: --8<---------------cut here---------------start------------->8-- * Test links [[track:((9.707032442092896 52.37033874553582) (9.711474180221558 52.375238282987))FILENAME.svg][DESCRIPTION]] --8<---------------cut here---------------end--------------->8-- Results in ASCII (just the section with the link): --8<---------------cut here---------------start------------->8-- 1 Test links ~~~~~~~~~~~~~ [DESCRIPTION] [DESCRIPTION]: track:((9.707032442092896 52.37033874553582) (9.711474180221558 52.375238282987))FILENAME.svg --8<---------------cut here---------------end--------------->8-- HTML works: --8<---------------cut here---------------start------------->8--

1 Test links

... --8<---------------cut here---------------end--------------->8-- Now as write this, I found I could as well use a bbdb link and come to similar results... :-( Sebastian