Skip to content

Commit 2815aa8

Browse files
committed
Merge branch 'v3.2-latest'
2 parents dd44cc1 + cc903d9 commit 2815aa8

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

advanced/extensions.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Custom Extensions
55
#################
66

7-
**This page is uncer construction**
7+
**This page is under construction**
88

99
See the :ref:`custom-component` section for an example of building
1010
custom extensions to MathJax.

options/accessibility.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ settings:
2828
options: {
2929
menuOptions: {
3030
settings: {
31-
assistiveMml: true; // true to enable assitive MathML
32-
collapsible: false; // true to enable collapsible math
33-
explorer: false; // true to enable the expression explorer
31+
assistiveMml: true, // true to enable assitive MathML
32+
collapsible: false, // true to enable collapsible math
33+
explorer: false // true to enable the expression explorer
3434
}
3535
}
3636
}

web/typeset.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ DOM modifications and returns the array of elements to typeset, or
9494
typeset(() => {
9595
const math = document.querySelector('#math');
9696
math.innerHTML = '$$\\frac{a}{1-a^2}$$';
97-
return math;
97+
return [math];
9898
});
9999
100100
would replace the contents of the element with ``id="math"`` with the

0 commit comments

Comments
 (0)