1
0
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2025-01-05 11:45:52 +00:00

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.
This commit is contained in:
David Maus 2011-10-08 21:18:57 +02:00
parent eed6b353d2
commit 85d0a9fc05

View File

@ -1046,9 +1046,9 @@ OPT-PLIST is the export options list."
(t
;; just publish the path, as default
(setq rpl (concat "@<i>&lt;" type ":"
(setq rpl (concat "<i>&lt;" type ":"
(save-match-data (org-link-unescape path))
"&gt;@</i>"))))
"&gt;</i>"))))
(setq line (replace-match rpl t t line)
start (+ start (length rpl))))
line))