mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-02-25 13:52:26 +00:00
Fix compatibility with MathJax 2.7.6
Signed-off-by: David Mehren <dmehren1@gmail.com>
This commit is contained in:
parent
20a67e3446
commit
88b855beb2
2 changed files with 10 additions and 2 deletions
|
@ -79,7 +79,7 @@
|
|||
"markdown-it-sub": "^1.0.0",
|
||||
"markdown-it-sup": "^1.0.0",
|
||||
"markdown-pdf": "^10.0.0",
|
||||
"mathjax": "~2.7.0",
|
||||
"mathjax": "~2.7.6",
|
||||
"mattermost": "^3.4.0",
|
||||
"mermaid": "~8.2.3",
|
||||
"meta-marked": "git+https://github.com/codimd/meta-marked#semver:^0.4.5",
|
||||
|
|
|
@ -131,13 +131,21 @@ module.exports = {
|
|||
}),
|
||||
new CopyWebpackPlugin([
|
||||
{
|
||||
context: path.join(__dirname, 'node_modules/mathjax'),
|
||||
context: path.join(__dirname, 'node_modules/mathjax/unpacked'),
|
||||
from: {
|
||||
glob: '**/*',
|
||||
dot: false
|
||||
},
|
||||
to: 'MathJax/'
|
||||
},
|
||||
{
|
||||
context: path.join(__dirname, 'node_modules/mathjax/fonts'),
|
||||
from: {
|
||||
glob: '**/*',
|
||||
dot: false
|
||||
},
|
||||
to: 'fonts/'
|
||||
},
|
||||
{
|
||||
context: path.join(__dirname, 'node_modules/emojify.js'),
|
||||
from: {
|
||||
|
|
Loading…
Reference in a new issue