diff options
author | Sheogorath | 2019-10-29 14:18:38 +0100 |
---|---|---|
committer | GitHub | 2019-10-29 14:18:38 +0100 |
commit | 01bff246b01398091815fa64547af8a1bf84b2a2 (patch) | |
tree | 05d879c39cb101ad096a3bd0151ae0828c32964f | |
parent | 31803d673011ec4dc3c2d427aacfc2250e347b3d (diff) | |
parent | 88b855beb21a4bc96ed9bb421de315395e9f04d8 (diff) |
Merge pull request #210 from davidmehren/mathjax_fix
Fix compatibility with MathJax 2.7.6
Diffstat (limited to '')
-rw-r--r-- | package.json | 2 | ||||
-rw-r--r-- | webpack.common.js | 10 |
2 files changed, 10 insertions, 2 deletions
diff --git a/package.json b/package.json index 532af835..7ff38787 100644 --- a/package.json +++ b/package.json @@ -80,7 +80,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", diff --git a/webpack.common.js b/webpack.common.js index ee8e9e80..0aae309d 100644 --- a/webpack.common.js +++ b/webpack.common.js @@ -131,7 +131,7 @@ module.exports = { }), new CopyWebpackPlugin([ { - context: path.join(__dirname, 'node_modules/mathjax'), + context: path.join(__dirname, 'node_modules/mathjax/unpacked'), from: { glob: '**/*', dot: false @@ -139,6 +139,14 @@ module.exports = { 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: { glob: 'dist/**/*', |