浏览代码

Reverse the changes that quoted " to "

This change inerferred with other functionality of the exporter,
causing all kinds of issues.
Carsten Dominik 16 年之前
父节点
当前提交
ca27c1d0b3
共有 2 个文件被更改,包括 5 次插入2 次删除
  1. 2 0
      lisp/ChangeLog
  2. 3 2
      lisp/org-exp.el

+ 2 - 0
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.

+ 3 - 2
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)