From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Ongaro Subject: Re: A gentle introduction to Emacs & Org-mode? Date: Tue, 12 Aug 2014 19:34:19 +0000 (UTC) Message-ID: References: <20140723232013.42690fcf@aga-netbook> <87lhrdflbk.fsf@bzg.ath.cx> <87lhrc710w.fsf@gmail.com> <85tx5z6gsp.fsf@andrew.cmu.edu> 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]:39679) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XHIA5-0005Df-EG for emacs-orgmode@gnu.org; Tue, 12 Aug 2014 15:55:19 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XHI9z-00013J-CP for emacs-orgmode@gnu.org; Tue, 12 Aug 2014 15:55:13 -0400 Received: from plane.gmane.org ([80.91.229.3]:57357) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XHI9z-00010C-6l for emacs-orgmode@gnu.org; Tue, 12 Aug 2014 15:55:07 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1XHHvP-0004cb-R0 for emacs-orgmode@gnu.org; Tue, 12 Aug 2014 21:40:04 +0200 Received: from 67.138.164.67 ([67.138.164.67]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 12 Aug 2014 21:40:03 +0200 Received: from david.ongaro by 67.138.164.67 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 12 Aug 2014 21:40:03 +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: emacs-orgmode@gnu.org John Kitchin andrew.cmu.edu> writes: > jorge.a.alfaro gmail.com (Jorge A. Alfaro-Murillo) writes: > > thanks for point that out, I have fixed them now I think. That must be > from some link escaping in the translation of org to html I guess. No, the problem happens during org-insert-link, so even before it's exported anywhere. I had to patch my org.el to fix the org-link-escape-chars variable. Maybe it should be fixed in the standard distribution, because its a really annoying and unexpected behaviour. Regards, David diff --git a/lisp/org.el b/lisp/org.el index 3e83043..3bca94a 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -9777,8 +9777,8 @@ according to FMT "]")) (defconst org-link-escape-chars - ;;%20 %2B %3B %3D %5B %5D - '(?\ ?\+ ?\; ?\= ?\[ ?\]) + ;;%20 %2B %3B %5B %5Dnn + '(?\ ?\+ ?\; ?\[ ?\]) "List of characters that should be escaped in link. This is the list that is used for internal purposes.")