You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'd like to use a third party MathJax extension js file. I know how to alter mathjax-config.js so that it wants to load the extension. The problem is I don't know where to put the actual extension js file. If I put it in htdocs/js/SomeFolder then npm ci creates a minimized, tagged, js file for it, and serves that minimized file. But MathJax is looking for the unminimized, untagged js file because that's what I put in mathjax-config.js. Of course I do not know the tag ahead of npm ci, so I can't (and wouldn't want to) declare the minimized, tagged js file in mathjax-config.js. Do we have a way to do this?
The text was updated successfully, but these errors were encountered:
Since this is on Github and has a compiled file in the distribution, you do the same thing that we do with MathQuill. From the htdocs directory run npm install github:limefrogyank/siunitx-pcc. Then the file will be at node_modules/siunitx/siunitx.js.
I'd like to use a third party MathJax extension js file. I know how to alter
mathjax-config.js
so that it wants to load the extension. The problem is I don't know where to put the actual extension js file. If I put it inhtdocs/js/SomeFolder
thennpm ci
creates a minimized, tagged, js file for it, and serves that minimized file. But MathJax is looking for the unminimized, untagged js file because that's what I put inmathjax-config.js
. Of course I do not know the tag ahead ofnpm ci
, so I can't (and wouldn't want to) declare the minimized, tagged js file inmathjax-config.js
. Do we have a way to do this?The text was updated successfully, but these errors were encountered: