mirror of
https://git.savannah.gnu.org/git/emacs/org-mode.git
synced 2024-11-25 07:27:57 +00:00
Fix export bug with radio links matching inside <<target>>
This commit is contained in:
parent
70d6341f2e
commit
8f17ffae37
@ -1,5 +1,8 @@
|
||||
2010-01-01 Carsten Dominik <carsten.dominik@gmail.com>
|
||||
|
||||
* org-exp.el (org-export-mark-radio-links): Don't match inside
|
||||
<<target>>.
|
||||
|
||||
* org.el (org-format-latex-header-extra): New variable.
|
||||
(org-format-latex): Set org-format-latex-header-extra from
|
||||
in-buffer stuff.
|
||||
|
@ -1902,7 +1902,8 @@ When it is nil, all comments will be removed."
|
||||
(unless
|
||||
(save-match-data
|
||||
(or (org-in-regexp org-bracket-link-regexp)
|
||||
(org-in-regexp org-plain-link-re)))
|
||||
(org-in-regexp org-plain-link-re)
|
||||
(org-in-regexp "<<[^<>]+>>")))
|
||||
(org-if-unprotected
|
||||
(replace-match "\\1[[\\2]]")))))))
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user