Browse Source

Fix escaping of links in html export.

* lisp/ox-html.el (org-html-link): Unescape org-escaped links an
  re-escape for html (browser).
Rick Frankel 11 years ago
parent
commit
9715523abe
1 changed files with 3 additions and 1 deletions
  1. 3 1
      lisp/ox-html.el

+ 3 - 1
lisp/ox-html.el

@@ -2661,7 +2661,9 @@ INFO is a plist holding contextual information.  See
 	 (path
 	  (cond
 	   ((member type '("http" "https" "ftp" "mailto"))
-	    (concat type ":" raw-path))
+	    (org-link-escape
+	     (org-link-unescape
+	      (concat type ":" raw-path)) org-link-escape-chars-browser))
 	   ((string= type "file")
 	    ;; Treat links to ".org" files as ".html", if needed.
 	    (setq raw-path