Forráskód Böngészése

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".
Jambunathan K 13 éve
szülő
commit
1634baf695
1 módosított fájl, 1 hozzáadás és 1 törlés
  1. 1 1
      lisp/org-odt.el

+ 1 - 1
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)