From 93e63999d59a763e5fdac6725bf024ff4ae7a175 Mon Sep 17 00:00:00 2001 From: Carsten Dominik Date: Mon, 4 May 2009 21:05:43 +0200 Subject: [PATCH] HTML export: Treat explicit links description better --- lisp/ChangeLog | 2 ++ lisp/org-exp.el | 4 +--- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index cb7ee58b4..57176656b 100755 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -2,6 +2,8 @@ * org-exp.el (org-export, org-export-visible): Support ASCII export to buffer + (org-export-normalize-links): Do not protect the description if it + is explicitly given. * org-ascii.el (org-export-as-ascii-to-buffer) (org-replace-region-by-ascii, org-export-region-as-ascii): New diff --git a/lisp/org-exp.el b/lisp/org-exp.el index 29346a4d2..03f12b08c 100644 --- a/lisp/org-exp.el +++ b/lisp/org-exp.el @@ -1794,9 +1794,7 @@ When it is nil, all comments will be removed." "]" (if (match-end 3) (match-string 2) - (concat "[" (org-add-props - (copy-sequence xx) - '(org-protected t)) + (concat "[" (copy-sequence xx) "]")) "]"))) (put-text-property 0 (length s) 'face 'org-link s) -- 2.11.4.GIT