Skip to content

Commit a1b71fc

Browse files
committed
Change TeX equation delimiters to \\(, \\), \\[, and \\]
1 parent 7283629 commit a1b71fc

File tree

4 files changed

+33
-34
lines changed

4 files changed

+33
-34
lines changed

lib/node_modules/@stdlib/math/base/special/digamma/lib/digamma.js

+14-14
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/node_modules/@stdlib/math/base/special/erf/lib/erf.js

+18-18
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tools/docs/jsdoc/templates/html/static/js/script.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
newChild = document.createElement( 'div' );
2121

2222
// Set the child's content:
23-
newChild.innerHTML = '$$' + tex + '$$';
23+
newChild.innerHTML = '\\[' + tex + '\\]';
2424

2525
// Get a reference to the parent node:
2626
parent = el.parentNode;

tools/docs/jsdoc/templates/html/tmpl/layout.tmpl

-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
MathJax.Hub.Config({
1111
'tex2jax': {
1212
'inlineMath': [
13-
['$','$'],
1413
['\\(','\\)']
1514
]
1615
}

0 commit comments

Comments
 (0)