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

Fix bug with link normalization and link abbrev expansion.

This commit is contained in:
Carsten Dominik 2008-07-05 08:06:10 -07:00
parent 012cc447a3
commit 7ac36c7e66
2 changed files with 7 additions and 4 deletions

View file

@ -1,5 +1,8 @@
2008-07-05 Carsten Dominik <dominik@science.uva.nl>
* org-exp.el (org-export-preprocess-string): Swap link
normalization and inernal link targeting.
* org-publish.el (org-publish-needed-p): Create timestamp
directory when it does not exist.

View file

@ -1415,15 +1415,15 @@ on this string to produce the exported version."
;; Find all links that contain a newline and put them into a single line
(org-export-concatenate-multiline-links)
;; Normalize links: Convert angle and plain links into bracket links
;; and expand link abbreviations
(org-export-normalize-links)
;; Find all internal links. If they have a fuzzy match (i.e. not
;; a *dedicated* target match, let the link point to the
;; corresponding section.
(org-export-target-internal-links target-alist)
;; Normalize links: Convert angle and plain links into bracket links
;; and expand link abbreviations
(org-export-normalize-links)
;; Find multiline emphasis and put them into single line
(when (plist-get parameters :emph-multiline)
(org-export-concatenate-multiline-emphasis))