From 85d0a9fc05928ce088bac1b9dab8a0f17a94f79a Mon Sep 17 00:00:00 2001 From: David Maus Date: Sat, 8 Oct 2011 21:18:57 +0200 Subject: [PATCH] Remove unnecessary protection markers * org-html.el (org-html-handle-links): Remove unnecessary protection markers when publishing link in default format. Left-over from the mess that was 7.5's HTML export. --- lisp/org-html.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/org-html.el b/lisp/org-html.el index 6492c2f95..38df432ab 100644 --- a/lisp/org-html.el +++ b/lisp/org-html.el @@ -1046,9 +1046,9 @@ OPT-PLIST is the export options list." (t ;; just publish the path, as default - (setq rpl (concat "@<" type ":" + (setq rpl (concat "<" type ":" (save-match-data (org-link-unescape path)) - ">@")))) + ">")))) (setq line (replace-match rpl t t line) start (+ start (length rpl)))) line)) -- 2.11.4.GIT