summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJambunathan K <kjambunathan@gmail.com>2012-01-24 01:52:51 +0530
committerJambunathan K <kjambunathan@gmail.com>2012-01-24 01:54:30 +0530
commit1634baf69586592b73fae8ddf878b8df6e58abef (patch)
treed80ba09d82081e3ef6bb5d1baa42ddd86f9ef6fe
parent527e6844cc1b67f2ef93c2304265ffe4b9cf3e69 (diff)
downloadorg-mode-1634baf69586592b73fae8ddf878b8df6e58abef.tar.gz
org-odt.el: Fix regression in typesetting of MathML formulae
* lisp/org-odt.el (org-export-odt-format-formula): Use :style property to specify custom table styles. Continuation of the earlier commit titled: "Put table width under user-control".
-rw-r--r--lisp/org-odt.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/org-odt.el b/lisp/org-odt.el
index cf65a0b..83a833e 100644
--- a/lisp/org-odt.el
+++ b/lisp/org-odt.el
@@ -1559,7 +1559,7 @@ value of `org-export-odt-fontify-srcblocks."
href width height :caption caption :label nil)
,(if (not label) ""
(org-odt-format-entity-caption label nil "__MathFormula__"))))
- nil nil nil "OrgEquation" nil '((1 "c" 8) (2 "c" 1)))
+ nil nil nil ":style \"OrgEquation\"" nil '((1 "c" 8) (2 "c" 1)))
(throw 'nextline nil))))))
(defvar org-odt-embedded-formulas-count 0)