hugo-academic-mirror/modules/wowchemy/assets/js/mathjax-config.js

23 lines
528 B
JavaScript
Raw Normal View History

// MathJax Configuration
//
// v2 to v3 upgrade notes:
// - The CommonHTML.linebreaks option is not yet implemented (but may be in a future release)
// - The TeX.noUndefined.attributes option is not yet implemented (but may be in a future release)
window.MathJax = {
tex: {
2021-01-08 23:29:45 +00:00
inlineMath: [
['$', '$'],
['\\(', '\\)'],
],
displayMath: [
['$$', '$$'],
['\\[', '\\]'],
],
processEscapes: false,
2021-01-08 23:29:45 +00:00
packages: {'[+]': ['noerrors']},
},
loader: {
2021-01-08 23:29:45 +00:00
load: ['[tex]/noerrors'],
},
};