ox-odt.el: Fix LaTeX formulae in opendocument exports
* lisp/ox-odt.el (org-odt--translate-latex-fragments): Apply signature
change for `org-format-latex'.
Commit a24f339f58
changed the signature
for `org-format-latex' (lisp/org.el) to add `beg' and `end' optional
parameters. This led to an error in ox-odt.el when exporting an
odt document containing LaTeX formulae.
This commit is contained in:
parent
6983f8e8bf
commit
73694b21d7
|
@ -3741,9 +3741,9 @@ contextual information."
|
|||
(org-link
|
||||
(let ((link (with-temp-buffer
|
||||
(insert latex-frag)
|
||||
(org-format-latex cache-subdir cache-dir
|
||||
nil display-msg
|
||||
nil processing-type)
|
||||
(org-format-latex cache-subdir nil nil cache-dir
|
||||
nil display-msg nil
|
||||
processing-type)
|
||||
(buffer-substring-no-properties
|
||||
(point-min) (point-max)))))
|
||||
(if (string-match-p "file:\\([^]]*\\)" link) link
|
||||
|
|
Loading…
Reference in New Issue