modules: rename wowchemy module to wowchemy-bootstrap

Based on user feedback to give modules clearer names now that effort has shifted from Bootstrap UI to the Tailwind UI in `wowchemy-tailwind`
This commit is contained in:
George Cushen 2023-11-01 18:56:52 +00:00
commit cc1b1a8aee
372 changed files with 1 additions and 1 deletions

View file

@ -0,0 +1,26 @@
// 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 = {
options: {
// Don't render math in mindmaps as Markmap has its own math renderer.
ignoreHtmlClass: 'markmap',
},
tex: {
inlineMath: [
['$', '$'],
['\\(', '\\)'],
],
displayMath: [
['$$', '$$'],
['\\[', '\\]'],
],
processEscapes: false,
packages: {'[+]': ['noerrors']},
},
loader: {
load: ['[tex]/noerrors'],
},
};