0
0
Fork 1
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-07-17 09:06:28 +00:00

Reverse the changes that quoted " to "

This change inerferred with other functionality of the exporter,
causing all kinds of issues.
This commit is contained in:
Carsten Dominik 2008-11-03 21:08:02 +01:00
parent c9cd22e861
commit ca27c1d0b3
2 changed files with 5 additions and 2 deletions

View file

@ -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.

View file

@ -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)