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

Export: Fix problem with => in clock lines triggering verbatim text.

Reported by Daniel Clemente.
This commit is contained in:
Carsten Dominik 2009-02-07 12:33:37 +01:00
parent 1b3352c153
commit 8be2c90ead
2 changed files with 8 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2009-02-07 Carsten Dominik <carsten.dominik@gmail.com>
* org-exp.el (org-export-preprocess-string): Remove clock lines
earlier, so that they cannot cotribute to verbatim snippets.
2009-02-06 Carsten Dominik <carsten.dominik@gmail.com>
* org-exp.el (org-export-remove-or-extract-drawers): Fix regexp

View file

@ -1561,6 +1561,9 @@ on this string to produce the exported version."
;; Protect quoted subtrees
(org-export-protect-quoted-subtrees)
;; Remove clock lines
(org-export-remove-clock-lines)
;; Protect verbatim elements
(org-export-protect-verbatim)
@ -1568,7 +1571,6 @@ on this string to produce the exported version."
(org-export-mark-blockquote-and-verse)
;; Remove timestamps, if the user has requested so
(org-export-remove-clock-lines)
(unless (plist-get parameters :timestamps)
(org-export-remove-timestamps))