diff --git a/lisp/ChangeLog b/lisp/ChangeLog index a33e04f2f..3a2246b68 100755 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -3,6 +3,8 @@ * org-exp.el (org-export-as-html): Fully process link descriptions. (org-export-html-format-desc): New function. (org-export-as-html): Collect footnotes into the correct basket. + (org-html-protect): No longer protect quotations marks here, this + goes wrong. * org-agenda.el (org-agenda-remove-marked-text): Bind variable BEG. diff --git a/lisp/org-exp.el b/lisp/org-exp.el index 44c7beed2..88147dcbf 100644 --- a/lisp/org-exp.el +++ b/lisp/org-exp.el @@ -3939,8 +3939,9 @@ that uses these same face definitions." (setq s (replace-match "<" t t s))) (while (string-match ">" s) (setq s (replace-match ">" t t s))) - (while (string-match "\"" s) - (setq s (replace-match """ t t s)))) +; (while (string-match "\"" s) +; (setq s (replace-match """ t t s))) + ) s) (defun org-export-cleanup-toc-line (s)