mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
Move MathJax config to base so it is always run
This prevents an issue where using MathJax would not be configured correctly unless using the mathjax directive.
This commit is contained in:
parent
13950e12f6
commit
99e24db075
1 changed files with 16 additions and 1 deletions
|
@ -27,6 +27,21 @@ define [
|
|||
client_id: window.user_id
|
||||
})
|
||||
|
||||
MathJax?.Hub?.Config(
|
||||
extensions: ["Safe.js"]
|
||||
messageStyle: "none"
|
||||
imageFont:null
|
||||
"HTML-CSS": { availableFonts: ["TeX"] },
|
||||
TeX:
|
||||
equationNumbers: { autoNumber: "AMS" },
|
||||
useLabelIDs: false
|
||||
skipStartupTypeset: true
|
||||
tex2jax:
|
||||
processEscapes: true,
|
||||
inlineMath: [ ["\\(","\\)"] ],
|
||||
displayMath: [ ['$$','$$'], ["\\[","\\]"] ]
|
||||
)
|
||||
|
||||
App.run ($templateCache) ->
|
||||
# UI Select templates are hard-coded and use Glyphicon icons (which we don't import).
|
||||
# The line below simply overrides the hard-coded template with our own, which is
|
||||
|
|
Loading…
Reference in a new issue