Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/queensferryme/hugo-theme-texify.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSiger Yang <sigeryeung@gmail.com>2021-06-09 12:36:33 +0300
committerQueensferry <queensferry.me@gmail.com>2022-03-31 10:51:12 +0300
commited68d3661813187ff73b252e9e48c70dd1bae44a (patch)
treea6451afab197fe64d085ff2f1e581782d69f8171
parent2acc9d272ec9d6261e53bd3b51896369597e6701 (diff)
fix: mathjax delimiters for display math
-rw-r--r--layouts/partials/mathjax.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/layouts/partials/mathjax.html b/layouts/partials/mathjax.html
index ea0f6ac..4cee432 100644
--- a/layouts/partials/mathjax.html
+++ b/layouts/partials/mathjax.html
@@ -3,7 +3,7 @@
window.MathJax = {
tex: {
inlineMath: [['$', '$'], ['\\(', '\\)']],
- displayMath: [['$$', '$$'], ['\[\[', '\]\]']],
+ displayMath: [['$$', '$$'], ['\\[', '\\]']],
processEscapes: true,
processEnvironments: true,
},