diff --git a/changelog.md b/changelog.md
--- a/changelog.md
+++ b/changelog.md
@@ -1,3 +1,11 @@
+texmath (0.12.10.1)
+
+  * MathML writer: group function application with operator name (#262).
+    This fixes an issue with munder/mover. Previously the mo
+    with the U+2061 was being put under the 'lim' operator
+    instead of 'n -> oo'. Grouping them ensures that munder/mover
+    will work properly.
+
 texmath (0.12.10)
 
   * texmath-server:
diff --git a/src/Text/TeXMath/Writers/MathML.hs b/src/Text/TeXMath/Writers/MathML.hs
--- a/src/Text/TeXMath/Writers/MathML.hs
+++ b/src/Text/TeXMath/Writers/MathML.hs
@@ -159,12 +159,18 @@
 showExps tt = map (showExp tt) . insertFunctionApps
 
 insertFunctionApps :: [Exp] -> [Exp]
-insertFunctionApps [] = []
-insertFunctionApps (e@EMathOperator{} : ESymbol _ "\x2061" : es) =
-  e : ESymbol Pun "\x2061" : insertFunctionApps es
-insertFunctionApps (e@EMathOperator{} : es) =
-  e : ESymbol Pun "\x2061" : insertFunctionApps es
-insertFunctionApps (e:es) = e : insertFunctionApps es
+-- handle this as a special case, or we get an infinite loop
+-- since we insert a new EGrouped to which insertFunctionApp will be applied.
+insertFunctionApps [e@EMathOperator{}, ESymbol _ "\x2061"] =
+  [e, ESymbol Pun "\x2061"]
+insertFunctionApps es' = go es'
+ where
+  go [] = []
+  go (e@EMathOperator{} : ESymbol _ "\x2061" : es) =
+    EGrouped [e , ESymbol Pun "\x2061"] : go es
+  go (e@EMathOperator{} : es@(_:_)) =
+    EGrouped [e, ESymbol Pun "\x2061"] : go es
+  go (e:es) = e : go es
 
 showExp :: Maybe TextType -> Exp -> Element
 showExp tt e =
diff --git a/test/writer/mml/00000_C0_Controls_and_Basic_Latin.test b/test/writer/mml/00000_C0_Controls_and_Basic_Latin.test
--- a/test/writer/mml/00000_C0_Controls_and_Basic_Latin.test
+++ b/test/writer/mml/00000_C0_Controls_and_Basic_Latin.test
@@ -225,7 +225,6 @@
       </mtd>
       <mtd columnalign="center" style="text-align: center">
         <mi></mi>
-        <mo>&#8289;</mo>
       </mtd>
       <mtd columnalign="center" style="text-align: center">
         <mi>0</mi>
diff --git a/test/writer/mml/08.test b/test/writer/mml/08.test
--- a/test/writer/mml/08.test
+++ b/test/writer/mml/08.test
@@ -73,9 +73,11 @@
       <mi>n</mi>
     </msup>
     <mo>,</mo>
-    <mi>arg</mi>
-    <mo>&#8289;</mo>
     <mrow>
+      <mi>arg</mi>
+      <mo>&#8289;</mo>
+    </mrow>
+    <mrow>
       <mo stretchy="true" form="prefix">(</mo>
       <msup>
         <mi>z</mi>
@@ -85,8 +87,10 @@
     </mrow>
     <mo>=</mo>
     <mi>n</mi>
-    <mi>arg</mi>
-    <mo>&#8289;</mo>
+    <mrow>
+      <mi>arg</mi>
+      <mo>&#8289;</mo>
+    </mrow>
     <mrow>
       <mo stretchy="true" form="prefix">(</mo>
       <mi>z</mi>
diff --git a/test/writer/mml/09.test b/test/writer/mml/09.test
--- a/test/writer/mml/09.test
+++ b/test/writer/mml/09.test
@@ -20,7 +20,6 @@
   <mrow>
     <munder>
       <mi>lim</mi>
-      <mo>&#8289;</mo>
       <mrow>
         <mi>z</mi>
         <mo>→</mo>
diff --git a/test/writer/mml/10.test b/test/writer/mml/10.test
--- a/test/writer/mml/10.test
+++ b/test/writer/mml/10.test
@@ -76,8 +76,10 @@
     </msubsup>
     <mfrac>
       <mrow>
-        <mi>sin</mi>
-        <mo>&#8289;</mo>
+        <mrow>
+          <mi>sin</mi>
+          <mo>&#8289;</mo>
+        </mrow>
         <mrow>
           <mo stretchy="true" form="prefix">(</mo>
           <mi>κ</mi>
diff --git a/test/writer/mml/a.test b/test/writer/mml/a.test
--- a/test/writer/mml/a.test
+++ b/test/writer/mml/a.test
@@ -139,7 +139,6 @@
       </mtd>
       <mtd columnalign="center" style="text-align: center">
         <mi>∾̳</mi>
-        <mo>&#8289;</mo>
       </mtd>
     </mtr>
     <mtr>
diff --git a/test/writer/mml/b.test b/test/writer/mml/b.test
--- a/test/writer/mml/b.test
+++ b/test/writer/mml/b.test
@@ -578,7 +578,6 @@
       </mtd>
       <mtd columnalign="center" style="text-align: center">
         <mi>=⃥</mi>
-        <mo>&#8289;</mo>
       </mtd>
     </mtr>
     <mtr>
@@ -587,7 +586,6 @@
       </mtd>
       <mtd columnalign="center" style="text-align: center">
         <mi>≡⃥</mi>
-        <mo>&#8289;</mo>
       </mtd>
     </mtr>
     <mtr>
diff --git a/test/writer/mml/c.test b/test/writer/mml/c.test
--- a/test/writer/mml/c.test
+++ b/test/writer/mml/c.test
@@ -238,7 +238,6 @@
       </mtd>
       <mtd columnalign="center" style="text-align: center">
         <mi>∩︀</mi>
-        <mo>&#8289;</mo>
       </mtd>
     </mtr>
     <mtr>
@@ -1039,7 +1038,6 @@
       </mtd>
       <mtd columnalign="center" style="text-align: center">
         <mi>∪︀</mi>
-        <mo>&#8289;</mo>
       </mtd>
     </mtr>
     <mtr>
diff --git a/test/writer/mml/complex3.test b/test/writer/mml/complex3.test
--- a/test/writer/mml/complex3.test
+++ b/test/writer/mml/complex3.test
@@ -7733,10 +7733,14 @@
             </mrow>
             <mo>+</mo>
             <mrow>
-              <mi>sin</mi>
-              <mo>&#8289;</mo>
-              <mi>cos</mi>
-              <mo>&#8289;</mo>
+              <mrow>
+                <mi>sin</mi>
+                <mo>&#8289;</mo>
+              </mrow>
+              <mrow>
+                <mi>cos</mi>
+                <mo>&#8289;</mo>
+              </mrow>
               <mi>θ</mi>
             </mrow>
           </mrow>
@@ -7899,7 +7903,6 @@
           <mrow>
             <munder>
               <mi>lim</mi>
-              <mo>&#8289;</mo>
               <mrow>
                 <mi>n</mi>
                 <mo>→</mo>
@@ -9131,8 +9134,10 @@
                       </msup>
                       <mi>&#8290;</mi>
                       <mrow>
-                        <mi>sin</mi>
-                        <mo>&#8289;</mo>
+                        <mrow>
+                          <mi>sin</mi>
+                          <mo>&#8289;</mo>
+                        </mrow>
                         <mi>y</mi>
                       </mrow>
                       <mi>&#8290;</mi>
@@ -9187,8 +9192,10 @@
           </mrow>
           <mo>=</mo>
           <mrow>
-            <mi>sin</mi>
-            <mo>&#8289;</mo>
+            <mrow>
+              <mi>sin</mi>
+              <mo>&#8289;</mo>
+            </mrow>
             <mi>x</mi>
           </mrow>
         </mrow>
@@ -10377,9 +10384,11 @@
               </msup>
               <mi>&#8290;</mi>
               <mrow>
-                <mi>cos</mi>
-                <mo>&#8289;</mo>
                 <mrow>
+                  <mi>cos</mi>
+                  <mo>&#8289;</mo>
+                </mrow>
+                <mrow>
                   <mfrac>
                     <mn>1</mn>
                     <mn>2</mn>
@@ -10427,9 +10436,11 @@
             <mn>2</mn>
             <mi>&#8290;</mi>
             <mrow>
-              <mi>tan</mi>
-              <mo>&#8289;</mo>
               <mrow>
+                <mi>tan</mi>
+                <mo>&#8289;</mo>
+              </mrow>
+              <mrow>
                 <mo stretchy="true" form="prefix">(</mo>
                 <mrow>
                   <mrow>
@@ -11352,8 +11363,10 @@
           <mtr>
             <mtd columnalign="center" style="text-align: center">
               <mrow>
-                <mi>sin</mi>
-                <mo>&#8289;</mo>
+                <mrow>
+                  <mi>sin</mi>
+                  <mo>&#8289;</mo>
+                </mrow>
                 <mi>θ</mi>
               </mrow>
             </mtd>
@@ -11361,8 +11374,10 @@
           <mtr>
             <mtd columnalign="center" style="text-align: center">
               <mrow>
-                <mi>cos</mi>
-                <mo>&#8289;</mo>
+                <mrow>
+                  <mi>cos</mi>
+                  <mo>&#8289;</mo>
+                </mrow>
                 <mi>γ</mi>
               </mrow>
             </mtd>
@@ -11494,8 +11509,10 @@
       <mtd columnalign="center" style="text-align: center">
         <mrow>
           <mrow>
-            <mi>∇×</mi>
-            <mo>&#8289;</mo>
+            <mrow>
+              <mi>∇×</mi>
+              <mo>&#8289;</mo>
+            </mrow>
             <mi>F</mi>
           </mrow>
           <mo>=</mo>
@@ -11507,8 +11524,10 @@
     <mtr>
       <mtd columnalign="center" style="text-align: center">
         <mrow>
-          <mi>∇·</mi>
-          <mo>&#8289;</mo>
+          <mrow>
+            <mi>∇·</mi>
+            <mo>&#8289;</mo>
+          </mrow>
           <mi>F</mi>
         </mrow>
       </mtd>
@@ -11518,8 +11537,10 @@
       <mtd columnalign="center" style="text-align: center">
         <mrow>
           <mrow>
-            <mi>∇·∇</mi>
-            <mo>&#8289;</mo>
+            <mrow>
+              <mi>∇·∇</mi>
+              <mo>&#8289;</mo>
+            </mrow>
             <mi>F</mi>
           </mrow>
           <mo>=</mo>
@@ -11544,9 +11565,11 @@
       <mtd columnalign="center" style="text-align: center">
         <mrow>
           <mrow>
-            <mi>∇×</mi>
-            <mo>&#8289;</mo>
             <mrow>
+              <mi>∇×</mi>
+              <mo>&#8289;</mo>
+            </mrow>
+            <mrow>
               <mo stretchy="false" form="prefix">(</mo>
               <mrow>
                 <mrow>
@@ -11609,9 +11632,11 @@
       <mtd columnalign="center" style="text-align: center">
         <mrow>
           <mrow>
-            <mi>∇×</mi>
-            <mo>&#8289;</mo>
             <mrow>
+              <mi>∇×</mi>
+              <mo>&#8289;</mo>
+            </mrow>
+            <mrow>
               <mo stretchy="false" form="prefix">(</mo>
               <mrow>
                 <mi>y</mi>
@@ -12198,9 +12223,11 @@
                 <mrow>
                   <mo stretchy="true" form="prefix">(</mo>
                   <mrow>
-                    <mi>arccos</mi>
-                    <mo>&#8289;</mo>
                     <mrow>
+                      <mi>arccos</mi>
+                      <mo>&#8289;</mo>
+                    </mrow>
+                    <mrow>
                       <mfrac>
                         <mn>1</mn>
                         <mn>7</mn>
@@ -12249,9 +12276,11 @@
                 <mrow>
                   <mo stretchy="true" form="prefix">(</mo>
                   <mrow>
-                    <mi>arccos</mi>
-                    <mo>&#8289;</mo>
                     <mrow>
+                      <mi>arccos</mi>
+                      <mo>&#8289;</mo>
+                    </mrow>
+                    <mrow>
                       <mfrac>
                         <mn>1</mn>
                         <mn>7</mn>
@@ -12321,9 +12350,11 @@
       <mtd columnalign="center" style="text-align: center">
         <mrow>
           <mrow>
-            <mi>det</mi>
-            <mo>&#8289;</mo>
             <mrow>
+              <mi>det</mi>
+              <mo>&#8289;</mo>
+            </mrow>
+            <mrow>
               <mo stretchy="true" form="prefix">(</mo>
               <mtable>
                 <mtr>
@@ -12430,8 +12461,10 @@
                 <mtr>
                   <mtd columnalign="center" style="text-align: center">
                     <mrow>
-                      <mi>cos</mi>
-                      <mo>&#8289;</mo>
+                      <mrow>
+                        <mi>cos</mi>
+                        <mo>&#8289;</mo>
+                      </mrow>
                       <mi>θ</mi>
                     </mrow>
                   </mtd>
@@ -12439,8 +12472,10 @@
                     <mrow>
                       <mo>−</mo>
                       <mrow>
-                        <mi>sin</mi>
-                        <mo>&#8289;</mo>
+                        <mrow>
+                          <mi>sin</mi>
+                          <mo>&#8289;</mo>
+                        </mrow>
                         <mi>θ</mi>
                       </mrow>
                     </mrow>
@@ -12449,15 +12484,19 @@
                 <mtr>
                   <mtd columnalign="center" style="text-align: center">
                     <mrow>
-                      <mi>sin</mi>
-                      <mo>&#8289;</mo>
+                      <mrow>
+                        <mi>sin</mi>
+                        <mo>&#8289;</mo>
+                      </mrow>
                       <mi>θ</mi>
                     </mrow>
                   </mtd>
                   <mtd columnalign="center" style="text-align: center">
                     <mrow>
-                      <mi>cos</mi>
-                      <mo>&#8289;</mo>
+                      <mrow>
+                        <mi>cos</mi>
+                        <mo>&#8289;</mo>
+                      </mrow>
                       <mi>θ</mi>
                     </mrow>
                   </mtd>
@@ -12472,15 +12511,19 @@
                 <mtr>
                   <mtd columnalign="center" style="text-align: center">
                     <mrow>
-                      <mi>cos</mi>
-                      <mo>&#8289;</mo>
+                      <mrow>
+                        <mi>cos</mi>
+                        <mo>&#8289;</mo>
+                      </mrow>
                       <mi>θ</mi>
                     </mrow>
                   </mtd>
                   <mtd columnalign="center" style="text-align: center">
                     <mrow>
-                      <mi>sin</mi>
-                      <mo>&#8289;</mo>
+                      <mrow>
+                        <mi>sin</mi>
+                        <mo>&#8289;</mo>
+                      </mrow>
                       <mi>θ</mi>
                     </mrow>
                   </mtd>
@@ -12490,16 +12533,20 @@
                     <mrow>
                       <mo>−</mo>
                       <mrow>
-                        <mi>sin</mi>
-                        <mo>&#8289;</mo>
+                        <mrow>
+                          <mi>sin</mi>
+                          <mo>&#8289;</mo>
+                        </mrow>
                         <mi>θ</mi>
                       </mrow>
                     </mrow>
                   </mtd>
                   <mtd columnalign="center" style="text-align: center">
                     <mrow>
-                      <mi>cos</mi>
-                      <mo>&#8289;</mo>
+                      <mrow>
+                        <mi>cos</mi>
+                        <mo>&#8289;</mo>
+                      </mrow>
                       <mi>θ</mi>
                     </mrow>
                   </mtd>
@@ -12646,9 +12693,11 @@
       <mtd columnalign="center" style="text-align: center">
         <mrow>
           <mrow>
-            <mi>det</mi>
-            <mo>&#8289;</mo>
             <mrow>
+              <mi>det</mi>
+              <mo>&#8289;</mo>
+            </mrow>
+            <mrow>
               <mo stretchy="true" form="prefix">(</mo>
               <mtable>
                 <mtr>
@@ -12805,7 +12854,6 @@
           <mrow>
             <munder>
               <mi>max</mi>
-              <mo>&#8289;</mo>
               <mrow>
                 <mi>x</mi>
                 <mo>≠</mo>
@@ -13169,7 +13217,6 @@
           <mrow>
             <munder>
               <mi>lim</mi>
-              <mo>&#8289;</mo>
               <mrow>
                 <mi>x</mi>
                 <mo>=</mo>
@@ -13219,7 +13266,6 @@
           <mrow>
             <munder>
               <mi>lim</mi>
-              <mo>&#8289;</mo>
               <mrow>
                 <mrow>
                   <mo>∥</mo>
@@ -13301,7 +13347,6 @@
           <mrow>
             <munder>
               <mi>lim</mi>
-              <mo>&#8289;</mo>
               <mrow>
                 <mi>n</mi>
                 <mo>→</mo>
@@ -13608,7 +13653,6 @@
           <mrow>
             <munder>
               <mi>lim</mi>
-              <mo>&#8289;</mo>
               <mrow>
                 <mi>x</mi>
                 <mo>→</mo>
@@ -13616,9 +13660,11 @@
               </mrow>
             </munder>
             <mrow>
-              <mi>sin</mi>
-              <mo>&#8289;</mo>
               <mrow>
+                <mi>sin</mi>
+                <mo>&#8289;</mo>
+              </mrow>
+              <mrow>
                 <mo stretchy="true" form="prefix">(</mo>
                 <mfrac>
                   <mn>1</mn>
@@ -13828,9 +13874,11 @@
             <mrow>
               <mo stretchy="true" form="prefix">(</mo>
               <mrow>
-                <mi>max</mi>
-                <mo>&#8289;</mo>
                 <mrow>
+                  <mi>max</mi>
+                  <mo>&#8289;</mo>
+                </mrow>
+                <mrow>
                   <mo stretchy="true" form="prefix">{</mo>
                   <mrow>
                     <mrow>
@@ -13983,7 +14031,6 @@
           <mrow>
             <munder>
               <mi>lim</mi>
-              <mo>&#8289;</mo>
               <mrow>
                 <mi>a</mi>
                 <mo>→</mo>
@@ -13995,8 +14042,10 @@
             </munder>
             <mrow>
               <msub>
-                <mi>log</mi>
-                <mo>&#8289;</mo>
+                <mrow>
+                  <mi>log</mi>
+                  <mo>&#8289;</mo>
+                </mrow>
                 <mi>a</mi>
               </msub>
               <mo>&#8289;</mo>
@@ -14048,7 +14097,6 @@
           <mrow>
             <munder>
               <mi>lim</mi>
-              <mo>&#8289;</mo>
               <mrow>
                 <mi>a</mi>
                 <mo>→</mo>
@@ -14060,8 +14108,10 @@
             </munder>
             <mrow>
               <msub>
-                <mi>log</mi>
-                <mo>&#8289;</mo>
+                <mrow>
+                  <mi>log</mi>
+                  <mo>&#8289;</mo>
+                </mrow>
                 <mi>a</mi>
               </msub>
               <mo>&#8289;</mo>
@@ -14133,9 +14183,11 @@
           </mrow>
           <mo>=</mo>
           <mrow>
-            <mi>exp</mi>
-            <mo>&#8289;</mo>
             <mrow>
+              <mi>exp</mi>
+              <mo>&#8289;</mo>
+            </mrow>
+            <mrow>
               <mo stretchy="true" form="prefix">(</mo>
               <mrow>
                 <mo>−</mo>
@@ -14196,9 +14248,11 @@
       <mtd columnalign="center" style="text-align: center">
         <mrow>
           <mrow>
-            <mi>Aut</mi>
-            <mo>&#8289;</mo>
             <mrow>
+              <mi>Aut</mi>
+              <mo>&#8289;</mo>
+            </mrow>
+            <mrow>
               <mo stretchy="false" form="prefix">(</mo>
               <mi>𝐈</mi>
               <mo stretchy="false" form="postfix">)</mo>
@@ -14310,8 +14364,10 @@
           <mtext mathvariant="normal">  </mtext>
           <mrow>
             <mrow>
-              <mi>tan</mi>
-              <mo>&#8289;</mo>
+              <mrow>
+                <mi>tan</mi>
+                <mo>&#8289;</mo>
+              </mrow>
               <mi>θ</mi>
             </mrow>
             <mo>=</mo>
@@ -14357,8 +14413,10 @@
                   <mn>2</mn>
                   <mo>+</mo>
                   <mrow>
-                    <mi>sin</mi>
-                    <mo>&#8289;</mo>
+                    <mrow>
+                      <mi>sin</mi>
+                      <mo>&#8289;</mo>
+                    </mrow>
                     <mi>t</mi>
                   </mrow>
                 </mrow>
@@ -14368,8 +14426,10 @@
               <mn>10</mn>
               <mi>&#8290;</mi>
               <mrow>
-                <mi>cos</mi>
-                <mo>&#8289;</mo>
+                <mrow>
+                  <mi>cos</mi>
+                  <mo>&#8289;</mo>
+                </mrow>
                 <mi>t</mi>
               </mrow>
             </mrow>
@@ -14381,8 +14441,10 @@
                   <mn>2</mn>
                   <mo>+</mo>
                   <mrow>
-                    <mi>cos</mi>
-                    <mo>&#8289;</mo>
+                    <mrow>
+                      <mi>cos</mi>
+                      <mo>&#8289;</mo>
+                    </mrow>
                     <mi>t</mi>
                   </mrow>
                 </mrow>
@@ -14392,8 +14454,10 @@
               <mn>10</mn>
               <mi>&#8290;</mi>
               <mrow>
-                <mi>sin</mi>
-                <mo>&#8289;</mo>
+                <mrow>
+                  <mi>sin</mi>
+                  <mo>&#8289;</mo>
+                </mrow>
                 <mi>t</mi>
               </mrow>
             </mrow>
@@ -14402,9 +14466,11 @@
               <mn>3</mn>
               <mi>&#8290;</mi>
               <mrow>
-                <mi>sin</mi>
-                <mo>&#8289;</mo>
                 <mrow>
+                  <mi>sin</mi>
+                  <mo>&#8289;</mo>
+                </mrow>
+                <mrow>
                   <mn>3</mn>
                   <mi>&#8290;</mi>
                   <mi>t</mi>
@@ -14988,8 +15054,10 @@
     <mtr>
       <mtd columnalign="center" style="text-align: center">
         <mrow>
-          <mi>mod</mi>
-          <mo>&#8289;</mo>
+          <mrow>
+            <mi>mod</mi>
+            <mo>&#8289;</mo>
+          </mrow>
           <mi>a</mi>
         </mrow>
       </mtd>
@@ -15000,8 +15068,10 @@
         <mrow>
           <mrow>
             <mn>5</mn>
-            <mi>mod</mi>
-            <mo>&#8289;</mo>
+            <mrow>
+              <mi>mod</mi>
+              <mo>&#8289;</mo>
+            </mrow>
             <mn>3</mn>
           </mrow>
           <mo>=</mo>
@@ -15023,8 +15093,10 @@
                 <mo stretchy="false" form="postfix">)</mo>
               </mrow>
             </mrow>
-            <mi>mod</mi>
-            <mo>&#8289;</mo>
+            <mrow>
+              <mi>mod</mi>
+              <mo>&#8289;</mo>
+            </mrow>
             <mn>3</mn>
           </mrow>
           <mo>=</mo>
@@ -15053,8 +15125,10 @@
           <mrow>
             <mo stretchy="true" form="prefix">(</mo>
             <mrow>
-              <mi>mod</mi>
-              <mo>&#8289;</mo>
+              <mrow>
+                <mi>mod</mi>
+                <mo>&#8289;</mo>
+              </mrow>
               <mn>13</mn>
             </mrow>
             <mo stretchy="true" form="postfix">)</mo>
@@ -15082,8 +15156,10 @@
               <mi>/</mi>
               <mn>5</mn>
             </mrow>
-            <mi>mod</mi>
-            <mo>&#8289;</mo>
+            <mrow>
+              <mi>mod</mi>
+              <mo>&#8289;</mo>
+            </mrow>
             <mn>7</mn>
           </mrow>
           <mo>=</mo>
@@ -15130,8 +15206,10 @@
                 <mo stretchy="true" form="postfix">)</mo>
               </mrow>
             </mrow>
-            <mi>mod</mi>
-            <mo>&#8289;</mo>
+            <mrow>
+              <mi>mod</mi>
+              <mo>&#8289;</mo>
+            </mrow>
             <mn>3</mn>
           </mrow>
           <mo>=</mo>
@@ -15296,9 +15374,11 @@
       <mtd columnalign="center" style="text-align: center">
         <mrow>
           <mrow>
-            <mi>Pr</mi>
-            <mo>&#8289;</mo>
             <mrow>
+              <mi>Pr</mi>
+              <mo>&#8289;</mo>
+            </mrow>
+            <mrow>
               <mo stretchy="false" form="prefix">(</mo>
               <mrow>
                 <mi>X</mi>
@@ -15339,9 +15419,11 @@
             <mi>k</mi>
             <mo>=</mo>
             <mrow>
-              <mi>max</mi>
-              <mo>&#8289;</mo>
               <mrow>
+                <mi>max</mi>
+                <mo>&#8289;</mo>
+              </mrow>
+              <mrow>
                 <mo stretchy="true" form="prefix">{</mo>
                 <mrow>
                   <mrow>
@@ -15402,7 +15484,6 @@
           <mrow>
             <munder>
               <mi>lim</mi>
-              <mo>&#8289;</mo>
               <mrow>
                 <mi>x</mi>
                 <mover>
@@ -16297,8 +16378,10 @@
                 <mn>13</mn>
                 <mi>&#8290;</mi>
                 <mrow>
-                  <mi>cos</mi>
-                  <mo>&#8289;</mo>
+                  <mrow>
+                    <mi>cos</mi>
+                    <mo>&#8289;</mo>
+                  </mrow>
                   <mi>x</mi>
                 </mrow>
               </mrow>
@@ -16320,8 +16403,10 @@
                       <mn>9</mn>
                       <mrow>
                         <msup>
-                          <mi>cos</mi>
-                          <mo>&#8289;</mo>
+                          <mrow>
+                            <mi>cos</mi>
+                            <mo>&#8289;</mo>
+                          </mrow>
                           <mn>2</mn>
                         </msup>
                         <mo>&#8289;</mo>
@@ -16333,16 +16418,20 @@
                       <mfrac>
                         <mn>60</mn>
                         <mrow>
-                          <mi>cos</mi>
-                          <mo>&#8289;</mo>
+                          <mrow>
+                            <mi>cos</mi>
+                            <mo>&#8289;</mo>
+                          </mrow>
                           <mi>x</mi>
                         </mrow>
                       </mfrac>
                       <mi>&#8290;</mi>
                       <mrow>
-                        <mi>sin</mi>
-                        <mo>&#8289;</mo>
                         <mrow>
+                          <mi>sin</mi>
+                          <mo>&#8289;</mo>
+                        </mrow>
+                        <mrow>
                           <mo stretchy="true" form="prefix">(</mo>
                           <mrow>
                             <mi>x</mi>
@@ -16378,9 +16467,11 @@
               <mo stretchy="true" form="prefix">∫</mo>
               <mrow>
                 <mrow>
-                  <mi>cos</mi>
-                  <mo>&#8289;</mo>
                   <mrow>
+                    <mi>cos</mi>
+                    <mo>&#8289;</mo>
+                  </mrow>
+                  <mrow>
                     <mo stretchy="false" form="prefix">(</mo>
                     <mrow>
                       <mi>A</mi>
@@ -16392,9 +16483,11 @@
                 </mrow>
                 <mi>&#8290;</mi>
                 <mrow>
-                  <mi>sin</mi>
-                  <mo>&#8289;</mo>
                   <mrow>
+                    <mi>sin</mi>
+                    <mo>&#8289;</mo>
+                  </mrow>
+                  <mrow>
                     <mo stretchy="false" form="prefix">(</mo>
                     <mrow>
                       <mi>B</mi>
@@ -16417,9 +16510,11 @@
                 <mrow>
                   <mo>−</mo>
                   <mrow>
-                    <mi>cos</mi>
-                    <mo>&#8289;</mo>
                     <mrow>
+                      <mi>cos</mi>
+                      <mo>&#8289;</mo>
+                    </mrow>
+                    <mrow>
                       <mrow>
                         <mo stretchy="false" form="prefix">(</mo>
                         <mrow>
@@ -16453,9 +16548,11 @@
                 <mrow>
                   <mo>−</mo>
                   <mrow>
-                    <mi>cos</mi>
-                    <mo>&#8289;</mo>
                     <mrow>
+                      <mi>cos</mi>
+                      <mo>&#8289;</mo>
+                    </mrow>
+                    <mrow>
                       <mrow>
                         <mo stretchy="false" form="prefix">(</mo>
                         <mrow>
@@ -16513,7 +16610,6 @@
           <mrow>
             <munder>
               <mi>max</mi>
-              <mo>&#8289;</mo>
               <mrow>
                 <mrow>
                   <mo>−</mo>
@@ -16613,8 +16709,10 @@
                 <mi>n</mi>
               </msup>
               <mrow>
-                <mi>sin</mi>
-                <mo>&#8289;</mo>
+                <mrow>
+                  <mi>sin</mi>
+                  <mo>&#8289;</mo>
+                </mrow>
                 <mi>x</mi>
               </mrow>
             </mrow>
@@ -16711,8 +16809,10 @@
                 <mn>13</mn>
                 <mi>&#8290;</mi>
                 <mrow>
-                  <mi>cos</mi>
-                  <mo>&#8289;</mo>
+                  <mrow>
+                    <mi>cos</mi>
+                    <mo>&#8289;</mo>
+                  </mrow>
                   <mi>x</mi>
                 </mrow>
               </mrow>
@@ -16734,8 +16834,10 @@
                       <mn>9</mn>
                       <mrow>
                         <msup>
-                          <mi>cos</mi>
-                          <mo>&#8289;</mo>
+                          <mrow>
+                            <mi>cos</mi>
+                            <mo>&#8289;</mo>
+                          </mrow>
                           <mn>2</mn>
                         </msup>
                         <mo>&#8289;</mo>
@@ -16747,16 +16849,20 @@
                       <mfrac>
                         <mn>60</mn>
                         <mrow>
-                          <mi>cos</mi>
-                          <mo>&#8289;</mo>
+                          <mrow>
+                            <mi>cos</mi>
+                            <mo>&#8289;</mo>
+                          </mrow>
                           <mi>x</mi>
                         </mrow>
                       </mfrac>
                       <mi>&#8290;</mi>
                       <mrow>
-                        <mi>sin</mi>
-                        <mo>&#8289;</mo>
                         <mrow>
+                          <mi>sin</mi>
+                          <mo>&#8289;</mo>
+                        </mrow>
+                        <mrow>
                           <mo stretchy="true" form="prefix">(</mo>
                           <mrow>
                             <mi>x</mi>
@@ -16869,8 +16975,10 @@
             <mrow>
               <mo stretchy="true" form="prefix">(</mo>
               <mrow>
-                <mi>∇×</mi>
-                <mo>&#8289;</mo>
+                <mrow>
+                  <mi>∇×</mi>
+                  <mo>&#8289;</mo>
+                </mrow>
                 <mi>𝐅</mi>
               </mrow>
               <mo stretchy="true" form="postfix">)</mo>
@@ -17081,8 +17189,10 @@
                   </mtd>
                   <mtd columnalign="center" style="text-align: center">
                     <mrow>
-                      <mi>sin</mi>
-                      <mo>&#8289;</mo>
+                      <mrow>
+                        <mi>sin</mi>
+                        <mo>&#8289;</mo>
+                      </mrow>
                       <mi>θ</mi>
                     </mrow>
                   </mtd>
@@ -17282,8 +17392,10 @@
             <mtr>
               <mtd columnalign="center" style="text-align: center">
                 <mrow>
-                  <mi>sin</mi>
-                  <mo>&#8289;</mo>
+                  <mrow>
+                    <mi>sin</mi>
+                    <mo>&#8289;</mo>
+                  </mrow>
                   <mi>θ</mi>
                 </mrow>
               </mtd>
@@ -17390,8 +17502,10 @@
           <mrow>
             <mrow>
               <msup>
-                <mi>sin</mi>
-                <mo>&#8289;</mo>
+                <mrow>
+                  <mi>sin</mi>
+                  <mo>&#8289;</mo>
+                </mrow>
                 <mn>3</mn>
               </msup>
               <mo>&#8289;</mo>
@@ -17403,8 +17517,10 @@
             <mo>+</mo>
             <mrow>
               <mrow>
-                <mi>sin</mi>
-                <mo>&#8289;</mo>
+                <mrow>
+                  <mi>sin</mi>
+                  <mo>&#8289;</mo>
+                </mrow>
                 <msup>
                   <mi>x</mi>
                   <mn>2</mn>
@@ -17412,13 +17528,17 @@
               </mrow>
               <mi>&#8290;</mi>
               <mrow>
-                <mi>sin</mi>
-                <mo>&#8289;</mo>
                 <mrow>
+                  <mi>sin</mi>
+                  <mo>&#8289;</mo>
+                </mrow>
+                <mrow>
                   <mo stretchy="true" form="prefix">(</mo>
                   <mrow>
-                    <mi>sin</mi>
-                    <mo>&#8289;</mo>
+                    <mrow>
+                      <mi>sin</mi>
+                      <mo>&#8289;</mo>
+                    </mrow>
                     <msup>
                       <mi>x</mi>
                       <mn>2</mn>
@@ -18222,9 +18342,11 @@
               <mo stretchy="false" form="prefix">(</mo>
               <mrow>
                 <msup>
-                  <mi>csc</mi>
-                  <mo>&#8289;</mo>
                   <mrow>
+                    <mi>csc</mi>
+                    <mo>&#8289;</mo>
+                  </mrow>
+                  <mrow>
                     <mo>−</mo>
                     <mn>1</mn>
                   </mrow>
@@ -18270,9 +18392,11 @@
           <mrow>
             <mrow>
               <msup>
-                <mi>tanh</mi>
-                <mo>&#8289;</mo>
                 <mrow>
+                  <mi>tanh</mi>
+                  <mo>&#8289;</mo>
+                </mrow>
+                <mrow>
                   <mo>−</mo>
                   <mn>1</mn>
                 </mrow>
@@ -18288,9 +18412,11 @@
               </mfrac>
               <mi>&#8290;</mi>
               <mrow>
-                <mi>ln</mi>
-                <mo>&#8289;</mo>
                 <mrow>
+                  <mi>ln</mi>
+                  <mo>&#8289;</mo>
+                </mrow>
+                <mrow>
                   <mo stretchy="true" form="prefix">(</mo>
                   <mfrac>
                     <mrow>
@@ -18691,11 +18817,15 @@
       <mtd columnalign="center" style="text-align: center">
         <mrow>
           <mi>x</mi>
-          <mi>≰⃥</mi>
-          <mo>&#8289;</mo>
+          <mrow>
+            <mi>≰⃥</mi>
+            <mo>&#8289;</mo>
+          </mrow>
           <mi>y</mi>
-          <mi>≰⃥</mi>
-          <mo>&#8289;</mo>
+          <mrow>
+            <mi>≰⃥</mi>
+            <mo>&#8289;</mo>
+          </mrow>
           <mi>z</mi>
         </mrow>
       </mtd>
@@ -18706,7 +18836,6 @@
         <mrow>
           <mover>
             <mi>lim</mi>
-            <mo>&#8289;</mo>
             <mo accent="true">¯</mo>
           </mover>
           <mi>x</mi>
@@ -18719,7 +18848,6 @@
         <mrow>
           <munder>
             <mi>lim</mi>
-            <mo>&#8289;</mo>
             <mo accent="true">̲</mo>
           </munder>
           <mi>x</mi>
@@ -18732,7 +18860,6 @@
         <mrow>
           <munder>
             <mi>lim</mi>
-            <mo>&#8289;</mo>
             <mo accent="true">→</mo>
           </munder>
           <mi>x</mi>
@@ -18745,7 +18872,6 @@
         <mrow>
           <munder>
             <mi>lim</mi>
-            <mo>&#8289;</mo>
             <mo accent="true">←</mo>
           </munder>
           <mi>x</mi>
@@ -19593,8 +19719,10 @@
           <mo stretchy="true" form="prefix">(</mo>
           <mfrac>
             <mrow>
-              <mi>sin</mi>
-              <mo>&#8289;</mo>
+              <mrow>
+                <mi>sin</mi>
+                <mo>&#8289;</mo>
+              </mrow>
               <mi>θ</mi>
             </mrow>
             <mi>M</mi>
@@ -19610,8 +19738,10 @@
           <mo stretchy="true" form="prefix">(</mo>
           <mfrac>
             <mrow>
-              <mi>sin</mi>
-              <mo>&#8289;</mo>
+              <mrow>
+                <mi>sin</mi>
+                <mo>&#8289;</mo>
+              </mrow>
               <mi>θ</mi>
             </mrow>
             <mi>M</mi>
@@ -19627,8 +19757,10 @@
           <mo stretchy="true" form="prefix">(</mo>
           <mfrac>
             <mrow>
-              <mi>sin</mi>
-              <mo>&#8289;</mo>
+              <mrow>
+                <mi>sin</mi>
+                <mo>&#8289;</mo>
+              </mrow>
               <mi>θ</mi>
             </mrow>
             <mi>M</mi>
@@ -19644,8 +19776,10 @@
           <mo stretchy="true" form="prefix">(</mo>
           <mfrac>
             <mrow>
-              <mi>sin</mi>
-              <mo>&#8289;</mo>
+              <mrow>
+                <mi>sin</mi>
+                <mo>&#8289;</mo>
+              </mrow>
               <mi>θ</mi>
             </mrow>
             <mi>M</mi>
@@ -19661,8 +19795,10 @@
           <mo stretchy="true" form="prefix">(</mo>
           <mfrac>
             <mrow>
-              <mi>sin</mi>
-              <mo>&#8289;</mo>
+              <mrow>
+                <mi>sin</mi>
+                <mo>&#8289;</mo>
+              </mrow>
               <mi>θ</mi>
             </mrow>
             <mi>M</mi>
@@ -19678,8 +19814,10 @@
           <mo stretchy="true" form="prefix">(</mo>
           <mfrac>
             <mrow>
-              <mi>sin</mi>
-              <mo>&#8289;</mo>
+              <mrow>
+                <mi>sin</mi>
+                <mo>&#8289;</mo>
+              </mrow>
               <mi>θ</mi>
             </mrow>
             <mi>M</mi>
@@ -19695,8 +19833,10 @@
           <mo stretchy="true" form="prefix">(</mo>
           <mfrac>
             <mrow>
-              <mi>sin</mi>
-              <mo>&#8289;</mo>
+              <mrow>
+                <mi>sin</mi>
+                <mo>&#8289;</mo>
+              </mrow>
               <mi>θ</mi>
             </mrow>
             <mi>M</mi>
@@ -19712,8 +19852,10 @@
           <mo stretchy="true" form="prefix">(</mo>
           <mfrac>
             <mrow>
-              <mi>sin</mi>
-              <mo>&#8289;</mo>
+              <mrow>
+                <mi>sin</mi>
+                <mo>&#8289;</mo>
+              </mrow>
               <mi>θ</mi>
             </mrow>
             <mi>M</mi>
@@ -19729,8 +19871,10 @@
           <mo stretchy="true" form="prefix">(</mo>
           <mfrac>
             <mrow>
-              <mi>sin</mi>
-              <mo>&#8289;</mo>
+              <mrow>
+                <mi>sin</mi>
+                <mo>&#8289;</mo>
+              </mrow>
               <mi>θ</mi>
             </mrow>
             <mi>M</mi>
@@ -19744,8 +19888,10 @@
       <mtd columnalign="center" style="text-align: center">
         <mfrac>
           <mrow>
-            <mi>sin</mi>
-            <mo>&#8289;</mo>
+            <mrow>
+              <mi>sin</mi>
+              <mo>&#8289;</mo>
+            </mrow>
             <mi>θ</mi>
           </mrow>
           <mi>M</mi>
@@ -19757,8 +19903,10 @@
       <mtd columnalign="center" style="text-align: center">
         <mfrac>
           <mrow>
-            <mi>sin</mi>
-            <mo>&#8289;</mo>
+            <mrow>
+              <mi>sin</mi>
+              <mo>&#8289;</mo>
+            </mrow>
             <mi>θ</mi>
           </mrow>
           <mi>M</mi>
@@ -19770,8 +19918,10 @@
       <mtd columnalign="center" style="text-align: center">
         <mfrac>
           <mrow>
-            <mi>sin</mi>
-            <mo>&#8289;</mo>
+            <mrow>
+              <mi>sin</mi>
+              <mo>&#8289;</mo>
+            </mrow>
             <mi>θ</mi>
           </mrow>
           <mi>M</mi>
@@ -19783,8 +19933,10 @@
       <mtd columnalign="center" style="text-align: center">
         <mfrac>
           <mrow>
-            <mi>sin</mi>
-            <mo>&#8289;</mo>
+            <mrow>
+              <mi>sin</mi>
+              <mo>&#8289;</mo>
+            </mrow>
             <mi>θ</mi>
           </mrow>
           <mi>M</mi>
@@ -19796,8 +19948,10 @@
       <mtd columnalign="center" style="text-align: center">
         <mfrac>
           <mrow>
-            <mi>sin</mi>
-            <mo>&#8289;</mo>
+            <mrow>
+              <mi>sin</mi>
+              <mo>&#8289;</mo>
+            </mrow>
             <mi>θ</mi>
           </mrow>
           <mi>M</mi>
@@ -19809,8 +19963,10 @@
       <mtd columnalign="center" style="text-align: center">
         <mfrac>
           <mrow>
-            <mi>sin</mi>
-            <mo>&#8289;</mo>
+            <mrow>
+              <mi>sin</mi>
+              <mo>&#8289;</mo>
+            </mrow>
             <mi>θ</mi>
           </mrow>
           <mi>M</mi>
@@ -19822,8 +19978,10 @@
       <mtd columnalign="center" style="text-align: center">
         <mfrac>
           <mrow>
-            <mi>sin</mi>
-            <mo>&#8289;</mo>
+            <mrow>
+              <mi>sin</mi>
+              <mo>&#8289;</mo>
+            </mrow>
             <mi>θ</mi>
           </mrow>
           <mi>M</mi>
@@ -19835,8 +19993,10 @@
       <mtd columnalign="center" style="text-align: center">
         <mfrac>
           <mrow>
-            <mi>sin</mi>
-            <mo>&#8289;</mo>
+            <mrow>
+              <mi>sin</mi>
+              <mo>&#8289;</mo>
+            </mrow>
             <mi>θ</mi>
           </mrow>
           <mi>M</mi>
@@ -19848,8 +20008,10 @@
       <mtd columnalign="center" style="text-align: center">
         <mfrac>
           <mrow>
-            <mi>sin</mi>
-            <mo>&#8289;</mo>
+            <mrow>
+              <mi>sin</mi>
+              <mo>&#8289;</mo>
+            </mrow>
             <mi>θ</mi>
           </mrow>
           <mi>M</mi>
diff --git a/test/writer/mml/emptyContent1.test b/test/writer/mml/emptyContent1.test
--- a/test/writer/mml/emptyContent1.test
+++ b/test/writer/mml/emptyContent1.test
@@ -6,6 +6,5 @@
   <msub>
     <mn></mn>
     <mi></mi>
-    <mo>&#8289;</mo>
   </msub>
 </math>
diff --git a/test/writer/mml/f.test b/test/writer/mml/f.test
--- a/test/writer/mml/f.test
+++ b/test/writer/mml/f.test
@@ -158,7 +158,6 @@
       </mtd>
       <mtd columnalign="center" style="text-align: center">
         <mi>fj</mi>
-        <mo>&#8289;</mo>
       </mtd>
     </mtr>
     <mtr>
diff --git a/test/writer/mml/g.test b/test/writer/mml/g.test
--- a/test/writer/mml/g.test
+++ b/test/writer/mml/g.test
@@ -318,7 +318,6 @@
       </mtd>
       <mtd columnalign="center" style="text-align: center">
         <mi>⋛︀</mi>
-        <mo>&#8289;</mo>
       </mtd>
     </mtr>
     <mtr>
@@ -719,7 +718,6 @@
       </mtd>
       <mtd columnalign="center" style="text-align: center">
         <mi>≩︀</mi>
-        <mo>&#8289;</mo>
       </mtd>
     </mtr>
     <mtr>
@@ -728,7 +726,6 @@
       </mtd>
       <mtd columnalign="center" style="text-align: center">
         <mi>≩︀</mi>
-        <mo>&#8289;</mo>
       </mtd>
     </mtr>
   </mtable>
diff --git a/test/writer/mml/invChars.test b/test/writer/mml/invChars.test
--- a/test/writer/mml/invChars.test
+++ b/test/writer/mml/invChars.test
@@ -12,8 +12,10 @@
 <math display="block" xmlns="http://www.w3.org/1998/Math/MathML">
   <mrow>
     <mn></mn>
-    <mi></mi>
-    <mo>&#8289;</mo>
+    <mrow>
+      <mi></mi>
+      <mo>&#8289;</mo>
+    </mrow>
     <mi></mi>
     <mi>&#8290;</mi>
     <mn></mn>
diff --git a/test/writer/mml/l.test b/test/writer/mml/l.test
--- a/test/writer/mml/l.test
+++ b/test/writer/mml/l.test
@@ -549,7 +549,6 @@
       </mtd>
       <mtd columnalign="center" style="text-align: center">
         <mi>⪭︀</mi>
-        <mo>&#8289;</mo>
       </mtd>
     </mtr>
     <mtr>
@@ -1118,7 +1117,6 @@
       </mtd>
       <mtd columnalign="center" style="text-align: center">
         <mi>⋚︀</mi>
-        <mo>&#8289;</mo>
       </mtd>
     </mtr>
     <mtr>
@@ -1967,7 +1965,6 @@
       </mtd>
       <mtd columnalign="center" style="text-align: center">
         <mi>≨︀</mi>
-        <mo>&#8289;</mo>
       </mtd>
     </mtr>
     <mtr>
@@ -1976,7 +1973,6 @@
       </mtd>
       <mtd columnalign="center" style="text-align: center">
         <mi>≨︀</mi>
-        <mo>&#8289;</mo>
       </mtd>
     </mtr>
   </mtable>
diff --git a/test/writer/mml/mfencedAempty.test b/test/writer/mml/mfencedAempty.test
--- a/test/writer/mml/mfencedAempty.test
+++ b/test/writer/mml/mfencedAempty.test
@@ -11,6 +11,5 @@
       <mi>y</mi>
     </mrow>
     <mi></mi>
-    <mo>&#8289;</mo>
   </mrow>
 </math>
diff --git a/test/writer/mml/mfracZcomp-01.test b/test/writer/mml/mfracZcomp-01.test
--- a/test/writer/mml/mfracZcomp-01.test
+++ b/test/writer/mml/mfracZcomp-01.test
@@ -15,8 +15,10 @@
     <mtext mathvariant="normal">Inline, auto, normal line </mtext>
     <mfrac>
       <mrow>
-        <mi>sin</mi>
-        <mo>&#8289;</mo>
+        <mrow>
+          <mi>sin</mi>
+          <mo>&#8289;</mo>
+        </mrow>
         <mi>θ</mi>
       </mrow>
       <mi>π</mi>
diff --git a/test/writer/mml/mfracZcomp-02.test b/test/writer/mml/mfracZcomp-02.test
--- a/test/writer/mml/mfracZcomp-02.test
+++ b/test/writer/mml/mfracZcomp-02.test
@@ -15,8 +15,10 @@
     <mtext mathvariant="normal">Inline, display style, normal line </mtext>
     <mfrac>
       <mrow>
-        <mi>ln</mi>
-        <mo>&#8289;</mo>
+        <mrow>
+          <mi>ln</mi>
+          <mo>&#8289;</mo>
+        </mrow>
         <mi>x</mi>
       </mrow>
       <mi>y</mi>
diff --git a/test/writer/mml/mfracZcomp-03.test b/test/writer/mml/mfracZcomp-03.test
--- a/test/writer/mml/mfracZcomp-03.test
+++ b/test/writer/mml/mfracZcomp-03.test
@@ -15,8 +15,10 @@
     <mtext mathvariant="normal">Inline, text style, normal line </mtext>
     <mfrac>
       <mrow>
-        <mi>tan</mi>
-        <mo>&#8289;</mo>
+        <mrow>
+          <mi>tan</mi>
+          <mo>&#8289;</mo>
+        </mrow>
         <mi>θ</mi>
       </mrow>
       <mn>67</mn>
diff --git a/test/writer/mml/mfracZcomp-12.test b/test/writer/mml/mfracZcomp-12.test
--- a/test/writer/mml/mfracZcomp-12.test
+++ b/test/writer/mml/mfracZcomp-12.test
@@ -21,8 +21,10 @@
       <mo stretchy="true" form="prefix">(</mo>
       <mfrac>
         <mrow>
-          <mi>log</mi>
-          <mo>&#8289;</mo>
+          <mrow>
+            <mi>log</mi>
+            <mo>&#8289;</mo>
+          </mrow>
           <mi>x</mi>
         </mrow>
         <mi>y</mi>
diff --git a/test/writer/mml/mfracZcomp-13.test b/test/writer/mml/mfracZcomp-13.test
--- a/test/writer/mml/mfracZcomp-13.test
+++ b/test/writer/mml/mfracZcomp-13.test
@@ -21,8 +21,10 @@
       <mo stretchy="true" form="prefix">|</mo>
       <mfrac>
         <mrow>
-          <mi>sin</mi>
-          <mo>&#8289;</mo>
+          <mrow>
+            <mi>sin</mi>
+            <mo>&#8289;</mo>
+          </mrow>
           <mi>θ</mi>
         </mrow>
         <mi>M</mi>
diff --git a/test/writer/mml/mfracZcomp-14.test b/test/writer/mml/mfracZcomp-14.test
--- a/test/writer/mml/mfracZcomp-14.test
+++ b/test/writer/mml/mfracZcomp-14.test
@@ -23,8 +23,10 @@
       <mo stretchy="true" form="infix">↑</mo>
       <mfrac>
         <mrow>
-          <mi>sin</mi>
-          <mo>&#8289;</mo>
+          <mrow>
+            <mi>sin</mi>
+            <mo>&#8289;</mo>
+          </mrow>
           <mi>θ</mi>
         </mrow>
         <mi>M</mi>
diff --git a/test/writer/mml/mfracZcomp-15.test b/test/writer/mml/mfracZcomp-15.test
--- a/test/writer/mml/mfracZcomp-15.test
+++ b/test/writer/mml/mfracZcomp-15.test
@@ -23,8 +23,10 @@
       <mo stretchy="true" form="infix">↓</mo>
       <mfrac>
         <mrow>
-          <mi>sin</mi>
-          <mo>&#8289;</mo>
+          <mrow>
+            <mi>sin</mi>
+            <mo>&#8289;</mo>
+          </mrow>
           <mi>θ</mi>
         </mrow>
         <mi>M</mi>
diff --git a/test/writer/mml/mfracZcomp-16.test b/test/writer/mml/mfracZcomp-16.test
--- a/test/writer/mml/mfracZcomp-16.test
+++ b/test/writer/mml/mfracZcomp-16.test
@@ -21,8 +21,10 @@
       <mo stretchy="true" form="prefix">⌊</mo>
       <mfrac>
         <mrow>
-          <mi>sin</mi>
-          <mo>&#8289;</mo>
+          <mrow>
+            <mi>sin</mi>
+            <mo>&#8289;</mo>
+          </mrow>
           <mi>θ</mi>
         </mrow>
         <mi>M</mi>
diff --git a/test/writer/mml/mfracZcomp-17.test b/test/writer/mml/mfracZcomp-17.test
--- a/test/writer/mml/mfracZcomp-17.test
+++ b/test/writer/mml/mfracZcomp-17.test
@@ -21,8 +21,10 @@
       <mo stretchy="true" form="prefix">⌈</mo>
       <mfrac>
         <mrow>
-          <mi>sin</mi>
-          <mo>&#8289;</mo>
+          <mrow>
+            <mi>sin</mi>
+            <mo>&#8289;</mo>
+          </mrow>
           <mi>θ</mi>
         </mrow>
         <mi>M</mi>
diff --git a/test/writer/mml/mfracZcomp-18.test b/test/writer/mml/mfracZcomp-18.test
--- a/test/writer/mml/mfracZcomp-18.test
+++ b/test/writer/mml/mfracZcomp-18.test
@@ -24,8 +24,10 @@
       <mo stretchy="true" form="infix">↕</mo>
       <mfrac>
         <mrow>
-          <mi>sin</mi>
-          <mo>&#8289;</mo>
+          <mrow>
+            <mi>sin</mi>
+            <mo>&#8289;</mo>
+          </mrow>
           <mi>θ</mi>
         </mrow>
         <mi>M</mi>
diff --git a/test/writer/mml/mfracZcomp-19.test b/test/writer/mml/mfracZcomp-19.test
--- a/test/writer/mml/mfracZcomp-19.test
+++ b/test/writer/mml/mfracZcomp-19.test
@@ -23,8 +23,10 @@
       <mo stretchy="true" form="infix">⇑</mo>
       <mfrac>
         <mrow>
-          <mi>sin</mi>
-          <mo>&#8289;</mo>
+          <mrow>
+            <mi>sin</mi>
+            <mo>&#8289;</mo>
+          </mrow>
           <mi>θ</mi>
         </mrow>
         <mi>M</mi>
diff --git a/test/writer/mml/mfracZcomp-20.test b/test/writer/mml/mfracZcomp-20.test
--- a/test/writer/mml/mfracZcomp-20.test
+++ b/test/writer/mml/mfracZcomp-20.test
@@ -25,8 +25,10 @@
       <mo stretchy="true" form="infix">⇓</mo>
       <mfrac>
         <mrow>
-          <mi>sin</mi>
-          <mo>&#8289;</mo>
+          <mrow>
+            <mi>sin</mi>
+            <mo>&#8289;</mo>
+          </mrow>
           <mi>θ</mi>
         </mrow>
         <mi>M</mi>
diff --git a/test/writer/mml/mfracZcomp-21.test b/test/writer/mml/mfracZcomp-21.test
--- a/test/writer/mml/mfracZcomp-21.test
+++ b/test/writer/mml/mfracZcomp-21.test
@@ -25,8 +25,10 @@
       <mo stretchy="true" form="infix">⇕</mo>
       <mfrac>
         <mrow>
-          <mi>sin</mi>
-          <mo>&#8289;</mo>
+          <mrow>
+            <mi>sin</mi>
+            <mo>&#8289;</mo>
+          </mrow>
           <mi>θ</mi>
         </mrow>
         <mi>M</mi>
diff --git a/test/writer/mml/mfracZcomp-24.test b/test/writer/mml/mfracZcomp-24.test
--- a/test/writer/mml/mfracZcomp-24.test
+++ b/test/writer/mml/mfracZcomp-24.test
@@ -55,8 +55,10 @@
               <mfrac>
                 <mrow>
                   <mrow>
-                    <mi>sin</mi>
-                    <mo>&#8289;</mo>
+                    <mrow>
+                      <mi>sin</mi>
+                      <mo>&#8289;</mo>
+                    </mrow>
                     <mi>θ</mi>
                   </mrow>
                   <mo>+</mo>
diff --git a/test/writer/mml/mfracZcomp-25.test b/test/writer/mml/mfracZcomp-25.test
--- a/test/writer/mml/mfracZcomp-25.test
+++ b/test/writer/mml/mfracZcomp-25.test
@@ -55,8 +55,10 @@
               <mfrac>
                 <mrow>
                   <mrow>
-                    <mi>sin</mi>
-                    <mo>&#8289;</mo>
+                    <mrow>
+                      <mi>sin</mi>
+                      <mo>&#8289;</mo>
+                    </mrow>
                     <mi>θ</mi>
                   </mrow>
                   <mo>+</mo>
diff --git a/test/writer/mml/mfracZcomp-33.test b/test/writer/mml/mfracZcomp-33.test
--- a/test/writer/mml/mfracZcomp-33.test
+++ b/test/writer/mml/mfracZcomp-33.test
@@ -73,8 +73,10 @@
           <mn>2</mn>
           <mi>i</mi>
           <mi> </mi>
-          <mi>cos</mi>
-          <mo>&#8289;</mo>
+          <mrow>
+            <mi>cos</mi>
+            <mo>&#8289;</mo>
+          </mrow>
           <mrow>
             <mo stretchy="true" form="prefix">(</mo>
             <mfrac>
diff --git a/test/writer/mml/mi2.test b/test/writer/mml/mi2.test
--- a/test/writer/mml/mi2.test
+++ b/test/writer/mml/mi2.test
@@ -4,8 +4,10 @@
 <?xml version='1.0' ?>
 <math display="block" xmlns="http://www.w3.org/1998/Math/MathML">
   <mrow>
-    <mi>sin</mi>
-    <mo>&#8289;</mo>
+    <mrow>
+      <mi>sin</mi>
+      <mo>&#8289;</mo>
+    </mrow>
     <mi>x</mi>
   </mrow>
 </math>
diff --git a/test/writer/mml/mo6.test b/test/writer/mml/mo6.test
--- a/test/writer/mml/mo6.test
+++ b/test/writer/mml/mo6.test
@@ -18,16 +18,20 @@
 <?xml version='1.0' ?>
 <math display="block" xmlns="http://www.w3.org/1998/Math/MathML">
   <mrow>
-    <mi>there exists</mi>
-    <mo>&#8289;</mo>
     <mrow>
+      <mi>there exists</mi>
+      <mo>&#8289;</mo>
+    </mrow>
+    <mrow>
       <mrow>
         <mi>δ</mi>
         <mo>&gt;</mo>
         <mn>0</mn>
       </mrow>
-      <mi>such that</mi>
-      <mo>&#8289;</mo>
+      <mrow>
+        <mi>such that</mi>
+        <mo>&#8289;</mo>
+      </mrow>
       <mrow>
         <mrow>
           <mi>f</mi>
diff --git a/test/writer/mml/n.test b/test/writer/mml/n.test
--- a/test/writer/mml/n.test
+++ b/test/writer/mml/n.test
@@ -406,7 +406,6 @@
       </mtd>
       <mtd columnalign="center" style="text-align: center">
         <mi>∠⃒</mi>
-        <mo>&#8289;</mo>
       </mtd>
     </mtr>
     <mtr>
@@ -423,7 +422,6 @@
       </mtd>
       <mtd columnalign="center" style="text-align: center">
         <mi>⩰̸</mi>
-        <mo>&#8289;</mo>
       </mtd>
     </mtr>
     <mtr>
@@ -432,7 +430,6 @@
       </mtd>
       <mtd columnalign="center" style="text-align: center">
         <mi>≋̸</mi>
-        <mo>&#8289;</mo>
       </mtd>
     </mtr>
     <mtr>
@@ -553,7 +550,6 @@
       </mtd>
       <mtd columnalign="center" style="text-align: center">
         <mi>⩭̸</mi>
-        <mo>&#8289;</mo>
       </mtd>
     </mtr>
     <mtr>
@@ -634,7 +630,6 @@
       </mtd>
       <mtd columnalign="center" style="text-align: center">
         <mi>≐̸</mi>
-        <mo>&#8289;</mo>
       </mtd>
     </mtr>
     <mtr>
@@ -715,7 +710,6 @@
       </mtd>
       <mtd columnalign="center" style="text-align: center">
         <mi></mi>
-        <mo>&#8289;</mo>
       </mtd>
     </mtr>
     <mtr>
@@ -764,7 +758,6 @@
       </mtd>
       <mtd columnalign="center" style="text-align: center">
         <mi>≧̸</mi>
-        <mo>&#8289;</mo>
       </mtd>
     </mtr>
     <mtr>
@@ -781,7 +774,6 @@
       </mtd>
       <mtd columnalign="center" style="text-align: center">
         <mi>≧̸</mi>
-        <mo>&#8289;</mo>
       </mtd>
     </mtr>
     <mtr>
@@ -806,7 +798,6 @@
       </mtd>
       <mtd columnalign="center" style="text-align: center">
         <mi>⋙̸</mi>
-        <mo>&#8289;</mo>
       </mtd>
     </mtr>
     <mtr>
@@ -831,7 +822,6 @@
       </mtd>
       <mtd columnalign="center" style="text-align: center">
         <mi>≫⃒</mi>
-        <mo>&#8289;</mo>
       </mtd>
     </mtr>
     <mtr>
@@ -1040,7 +1030,6 @@
       </mtd>
       <mtd columnalign="center" style="text-align: center">
         <mi>⋘̸</mi>
-        <mo>&#8289;</mo>
       </mtd>
     </mtr>
     <mtr>
@@ -1065,7 +1054,6 @@
       </mtd>
       <mtd columnalign="center" style="text-align: center">
         <mi>≪⃒</mi>
-        <mo>&#8289;</mo>
       </mtd>
     </mtr>
     <mtr>
@@ -1226,7 +1214,6 @@
       </mtd>
       <mtd columnalign="center" style="text-align: center">
         <mi>≧̸</mi>
-        <mo>&#8289;</mo>
       </mtd>
     </mtr>
     <mtr>
@@ -1291,7 +1278,6 @@
       </mtd>
       <mtd columnalign="center" style="text-align: center">
         <mi>⋵̸</mi>
-        <mo>&#8289;</mo>
       </mtd>
     </mtr>
     <mtr>
@@ -1300,7 +1286,6 @@
       </mtd>
       <mtd columnalign="center" style="text-align: center">
         <mi>⋹̸</mi>
-        <mo>&#8289;</mo>
       </mtd>
     </mtr>
     <mtr>
@@ -1661,7 +1646,6 @@
       </mtd>
       <mtd columnalign="center" style="text-align: center">
         <mi>⫽⃥</mi>
-        <mo>&#8289;</mo>
       </mtd>
     </mtr>
     <mtr>
@@ -1670,7 +1654,6 @@
       </mtd>
       <mtd columnalign="center" style="text-align: center">
         <mi>∂̸</mi>
-        <mo>&#8289;</mo>
       </mtd>
     </mtr>
     <mtr>
@@ -1743,7 +1726,6 @@
       </mtd>
       <mtd columnalign="center" style="text-align: center">
         <mi>⤳̸</mi>
-        <mo>&#8289;</mo>
       </mtd>
     </mtr>
     <mtr>
@@ -1752,7 +1734,6 @@
       </mtd>
       <mtd columnalign="center" style="text-align: center">
         <mi>↝̸</mi>
-        <mo>&#8289;</mo>
       </mtd>
     </mtr>
     <mtr>
@@ -1921,7 +1902,6 @@
       </mtd>
       <mtd columnalign="center" style="text-align: center">
         <mi>⫅̸</mi>
-        <mo>&#8289;</mo>
       </mtd>
     </mtr>
     <mtr>
@@ -1946,7 +1926,6 @@
       </mtd>
       <mtd columnalign="center" style="text-align: center">
         <mi>⫅̸</mi>
-        <mo>&#8289;</mo>
       </mtd>
     </mtr>
     <mtr>
@@ -1987,7 +1966,6 @@
       </mtd>
       <mtd columnalign="center" style="text-align: center">
         <mi>⫆̸</mi>
-        <mo>&#8289;</mo>
       </mtd>
     </mtr>
     <mtr>
@@ -2012,7 +1990,6 @@
       </mtd>
       <mtd columnalign="center" style="text-align: center">
         <mi>⫆̸</mi>
-        <mo>&#8289;</mo>
       </mtd>
     </mtr>
     <mtr>
@@ -2117,7 +2094,6 @@
       </mtd>
       <mtd columnalign="center" style="text-align: center">
         <mi>≍⃒</mi>
-        <mo>&#8289;</mo>
       </mtd>
     </mtr>
     <mtr>
@@ -2158,7 +2134,6 @@
       </mtd>
       <mtd columnalign="center" style="text-align: center">
         <mi>≥⃒</mi>
-        <mo>&#8289;</mo>
       </mtd>
     </mtr>
     <mtr>
@@ -2167,7 +2142,6 @@
       </mtd>
       <mtd columnalign="center" style="text-align: center">
         <mi>&gt;⃒</mi>
-        <mo>&#8289;</mo>
       </mtd>
     </mtr>
     <mtr>
@@ -2200,7 +2174,6 @@
       </mtd>
       <mtd columnalign="center" style="text-align: center">
         <mi>≤⃒</mi>
-        <mo>&#8289;</mo>
       </mtd>
     </mtr>
     <mtr>
@@ -2209,7 +2182,6 @@
       </mtd>
       <mtd columnalign="center" style="text-align: center">
         <mi>&lt;⃒</mi>
-        <mo>&#8289;</mo>
       </mtd>
     </mtr>
     <mtr>
@@ -2218,7 +2190,6 @@
       </mtd>
       <mtd columnalign="center" style="text-align: center">
         <mi>⊴⃒</mi>
-        <mo>&#8289;</mo>
       </mtd>
     </mtr>
     <mtr>
@@ -2235,7 +2206,6 @@
       </mtd>
       <mtd columnalign="center" style="text-align: center">
         <mi>⊵⃒</mi>
-        <mo>&#8289;</mo>
       </mtd>
     </mtr>
     <mtr>
@@ -2244,7 +2214,6 @@
       </mtd>
       <mtd columnalign="center" style="text-align: center">
         <mi>∼⃒</mi>
-        <mo>&#8289;</mo>
       </mtd>
     </mtr>
     <mtr>
diff --git a/test/writer/mml/operatorname.test b/test/writer/mml/operatorname.test
--- a/test/writer/mml/operatorname.test
+++ b/test/writer/mml/operatorname.test
@@ -76,27 +76,35 @@
       <mtr>
         <mtd columnalign="left" style="text-align: left">
           <msub>
-            <mi>div</mi>
-            <mo>&#8289;</mo>
+            <mrow>
+              <mi>div</mi>
+              <mo>&#8289;</mo>
+            </mrow>
             <mi>x</mi>
           </msub>
           <mi>u</mi>
           <msup>
-            <mi>div</mi>
-            <mo>&#8289;</mo>
+            <mrow>
+              <mi>div</mi>
+              <mo>&#8289;</mo>
+            </mrow>
             <mi>x</mi>
           </msup>
           <mi>u</mi>
           <msubsup>
-            <mi>div</mi>
-            <mo>&#8289;</mo>
+            <mrow>
+              <mi>div</mi>
+              <mo>&#8289;</mo>
+            </mrow>
             <mi>x</mi>
             <mi>y</mi>
           </msubsup>
           <mi>u</mi>
           <msubsup>
-            <mi>div</mi>
-            <mo>&#8289;</mo>
+            <mrow>
+              <mi>div</mi>
+              <mo>&#8289;</mo>
+            </mrow>
             <mi>x</mi>
             <mi>y</mi>
           </msubsup>
@@ -110,7 +118,6 @@
         <mtd columnalign="left" style="text-align: left">
           <munder>
             <mi>⋆-lim&#39;sup</mi>
-            <mo>&#8289;</mo>
             <mrow>
               <mi>x</mi>
               <mo>→</mo>
@@ -120,13 +127,11 @@
           <mi>u</mi>
           <mover>
             <mi>⋆-lim&#39;sup</mi>
-            <mo>&#8289;</mo>
             <mi>w</mi>
           </mover>
           <mi>u</mi>
           <munderover>
             <mi>⋆-lim&#39;sup</mi>
-            <mo>&#8289;</mo>
             <mrow>
               <mi>x</mi>
               <mo>→</mo>
@@ -137,7 +142,6 @@
           <mi>u</mi>
           <munderover>
             <mi>⋆-lim&#39;sup</mi>
-            <mo>&#8289;</mo>
             <mrow>
               <mi>x</mi>
               <mo>→</mo>
@@ -154,9 +158,11 @@
       <mtr>
         <mtd columnalign="left" style="text-align: left">
           <msub>
-            <mi>⋆-lim&#39;sup</mi>
-            <mo>&#8289;</mo>
             <mrow>
+              <mi>⋆-lim&#39;sup</mi>
+              <mo>&#8289;</mo>
+            </mrow>
+            <mrow>
               <mi>x</mi>
               <mo>→</mo>
               <mn>0</mn>
@@ -164,15 +170,19 @@
           </msub>
           <mi>u</mi>
           <msup>
-            <mi>⋆-lim&#39;sup</mi>
-            <mo>&#8289;</mo>
+            <mrow>
+              <mi>⋆-lim&#39;sup</mi>
+              <mo>&#8289;</mo>
+            </mrow>
             <mi>w</mi>
           </msup>
           <mi>u</mi>
           <msubsup>
-            <mi>⋆-lim&#39;sup</mi>
-            <mo>&#8289;</mo>
             <mrow>
+              <mi>⋆-lim&#39;sup</mi>
+              <mo>&#8289;</mo>
+            </mrow>
+            <mrow>
               <mi>x</mi>
               <mo>→</mo>
               <mn>0</mn>
@@ -181,9 +191,11 @@
           </msubsup>
           <mi>u</mi>
           <msubsup>
-            <mi>⋆-lim&#39;sup</mi>
-            <mo>&#8289;</mo>
             <mrow>
+              <mi>⋆-lim&#39;sup</mi>
+              <mo>&#8289;</mo>
+            </mrow>
+            <mrow>
               <mi>x</mi>
               <mo>→</mo>
               <mn>0</mn>
@@ -199,14 +211,15 @@
       <mtr>
         <mtd columnalign="left" style="text-align: left">
           <msub>
-            <mi>curl</mi>
-            <mo>&#8289;</mo>
+            <mrow>
+              <mi>curl</mi>
+              <mo>&#8289;</mo>
+            </mrow>
             <mi>x</mi>
           </msub>
           <mi>v</mi>
           <munder>
             <mi>argmax</mi>
-            <mo>&#8289;</mo>
             <mi>K</mi>
           </munder>
           <mi>u</mi>
diff --git a/test/writer/mml/primes1.test b/test/writer/mml/primes1.test
--- a/test/writer/mml/primes1.test
+++ b/test/writer/mml/primes1.test
@@ -63,7 +63,6 @@
     <msup>
       <mi>x</mi>
       <mi>&#39;&#39;</mi>
-      <mo>&#8289;</mo>
     </msup>
     <mo>+</mo>
     <mi>x</mi>
diff --git a/test/writer/mml/s.test b/test/writer/mml/s.test
--- a/test/writer/mml/s.test
+++ b/test/writer/mml/s.test
@@ -813,7 +813,6 @@
       </mtd>
       <mtd columnalign="center" style="text-align: center">
         <mi>⪬︀</mi>
-        <mo>&#8289;</mo>
       </mtd>
     </mtr>
     <mtr>
@@ -910,7 +909,6 @@
       </mtd>
       <mtd columnalign="center" style="text-align: center">
         <mi>⊓︀</mi>
-        <mo>&#8289;</mo>
       </mtd>
     </mtr>
     <mtr>
@@ -927,7 +925,6 @@
       </mtd>
       <mtd columnalign="center" style="text-align: center">
         <mi>⊔︀</mi>
-        <mo>&#8289;</mo>
       </mtd>
     </mtr>
     <mtr>
diff --git a/test/writer/mml/simplePres.test b/test/writer/mml/simplePres.test
--- a/test/writer/mml/simplePres.test
+++ b/test/writer/mml/simplePres.test
@@ -47,8 +47,10 @@
         </mfrac>
         <mo>,</mo>
         <mrow>
-          <mi>sin</mi>
-          <mo>&#8289;</mo>
+          <mrow>
+            <mi>sin</mi>
+            <mo>&#8289;</mo>
+          </mrow>
           <mi>x</mi>
         </mrow>
         <mo>.</mo>
diff --git a/test/writer/mml/sphere_volume.test b/test/writer/mml/sphere_volume.test
--- a/test/writer/mml/sphere_volume.test
+++ b/test/writer/mml/sphere_volume.test
@@ -176,8 +176,10 @@
             <mi>ρ</mi>
             <mn>2</mn>
           </msup>
-          <mi>sin</mi>
-          <mo>&#8289;</mo>
+          <mrow>
+            <mi>sin</mi>
+            <mo>&#8289;</mo>
+          </mrow>
           <mi>θ</mi>
           <mspace width="0.167em" />
           <mi mathvariant="normal">d</mi>
@@ -212,8 +214,10 @@
             <mi>π</mi>
           </msubsup>
           <mspace width="-0.167em" />
-          <mi>sin</mi>
-          <mo>&#8289;</mo>
+          <mrow>
+            <mi>sin</mi>
+            <mo>&#8289;</mo>
+          </mrow>
           <mi>θ</mi>
           <mspace width="0.167em" />
           <mi mathvariant="normal">d</mi>
diff --git a/test/writer/mml/subsup.test b/test/writer/mml/subsup.test
--- a/test/writer/mml/subsup.test
+++ b/test/writer/mml/subsup.test
@@ -82,31 +82,26 @@
     <mspace width="1.0em" />
     <munder>
       <mi>min</mi>
-      <mo>&#8289;</mo>
       <mi>A</mi>
     </munder>
     <mspace width="1.0em" />
     <munder>
       <mi>max</mi>
-      <mo>&#8289;</mo>
       <mi>B</mi>
     </munder>
     <mspace width="1.0em" />
     <munder>
       <mi>det</mi>
-      <mo>&#8289;</mo>
       <mi>C</mi>
     </munder>
     <mspace width="1.0em" />
     <munder>
       <mi>Pr</mi>
-      <mo>&#8289;</mo>
       <mi>A</mi>
     </munder>
     <mspace width="1.0em" />
     <munder>
       <mi>gcd</mi>
-      <mo>&#8289;</mo>
       <mi>A</mi>
     </munder>
     <mspace width="1.0em" />
diff --git a/test/writer/mml/t.test b/test/writer/mml/t.test
--- a/test/writer/mml/t.test
+++ b/test/writer/mml/t.test
@@ -102,7 +102,6 @@
       </mtd>
       <mtd columnalign="center" style="text-align: center">
         <mi></mi>
-        <mo>&#8289;</mo>
       </mtd>
     </mtr>
     <mtr>
@@ -279,7 +278,6 @@
       </mtd>
       <mtd columnalign="center" style="text-align: center">
         <mi>  </mi>
-        <mo>&#8289;</mo>
       </mtd>
     </mtr>
     <mtr>
diff --git a/test/writer/mml/v.test b/test/writer/mml/v.test
--- a/test/writer/mml/v.test
+++ b/test/writer/mml/v.test
@@ -186,7 +186,6 @@
       </mtd>
       <mtd columnalign="center" style="text-align: center">
         <mi>⊊︀</mi>
-        <mo>&#8289;</mo>
       </mtd>
     </mtr>
     <mtr>
@@ -195,7 +194,6 @@
       </mtd>
       <mtd columnalign="center" style="text-align: center">
         <mi>⫋︀</mi>
-        <mo>&#8289;</mo>
       </mtd>
     </mtr>
     <mtr>
@@ -204,7 +202,6 @@
       </mtd>
       <mtd columnalign="center" style="text-align: center">
         <mi>⊋︀</mi>
-        <mo>&#8289;</mo>
       </mtd>
     </mtr>
     <mtr>
@@ -213,7 +210,6 @@
       </mtd>
       <mtd columnalign="center" style="text-align: center">
         <mi>⫌︀</mi>
-        <mo>&#8289;</mo>
       </mtd>
     </mtr>
     <mtr>
@@ -526,7 +522,6 @@
       </mtd>
       <mtd columnalign="center" style="text-align: center">
         <mi>⊊︀</mi>
-        <mo>&#8289;</mo>
       </mtd>
     </mtr>
     <mtr>
@@ -535,7 +530,6 @@
       </mtd>
       <mtd columnalign="center" style="text-align: center">
         <mi>⫋︀</mi>
-        <mo>&#8289;</mo>
       </mtd>
     </mtr>
     <mtr>
@@ -544,7 +538,6 @@
       </mtd>
       <mtd columnalign="center" style="text-align: center">
         <mi>⊋︀</mi>
-        <mo>&#8289;</mo>
       </mtd>
     </mtr>
     <mtr>
@@ -553,7 +546,6 @@
       </mtd>
       <mtd columnalign="center" style="text-align: center">
         <mi>⫌︀</mi>
-        <mo>&#8289;</mo>
       </mtd>
     </mtr>
     <mtr>
diff --git a/test/writer/mml/white10.test b/test/writer/mml/white10.test
--- a/test/writer/mml/white10.test
+++ b/test/writer/mml/white10.test
@@ -32,20 +32,30 @@
     <mi>H</mi>
     <mi> </mi>
     <mi>H</mi>
-    <mi> ︀</mi>
-    <mo>&#8289;</mo>
+    <mrow>
+      <mi> ︀</mi>
+      <mo>&#8289;</mo>
+    </mrow>
     <mi>H</mi>
-    <mi> ︀</mi>
-    <mo>&#8289;</mo>
+    <mrow>
+      <mi> ︀</mi>
+      <mo>&#8289;</mo>
+    </mrow>
     <mi>H</mi>
-    <mi> ︀</mi>
-    <mo>&#8289;</mo>
+    <mrow>
+      <mi> ︀</mi>
+      <mo>&#8289;</mo>
+    </mrow>
     <mi>H</mi>
-    <mi> ︀</mi>
-    <mo>&#8289;</mo>
+    <mrow>
+      <mi> ︀</mi>
+      <mo>&#8289;</mo>
+    </mrow>
     <mi>H</mi>
-    <mi></mi>
-    <mo>&#8289;</mo>
+    <mrow>
+      <mi></mi>
+      <mo>&#8289;</mo>
+    </mrow>
     <mi>H</mi>
   </mrow>
 </math>
diff --git a/texmath.cabal b/texmath.cabal
--- a/texmath.cabal
+++ b/texmath.cabal
@@ -1,5 +1,5 @@
 Name:                texmath
-Version:             0.12.10
+Version:             0.12.10.1
 Cabal-Version:       >= 1.10
 Build-type:          Simple
 Synopsis:            Conversion between math formats.
