vuepress / vuepress-plugin-mathjax

:page_with_curl: Use TeX in VuePress.
https://vuepress.github.io/plugins/mathjax.html
MIT License
32 stars 10 forks source link

Adding extensions #13

Open yakovlevkll opened 5 years ago

yakovlevkll commented 5 years ago

Hi,

Thanks for the great work done.

The question is -- how can I add third-party extension, for example mhchem?

I've tried to do this with packages option in vuepress's config.js, something like

module.exports = {
  // ...
  plugins: [
    [
      "mathjax",
      {
        packages: ["mhchem"]
        // ...
      }
    ]
  ]
  // ...
};

But it ruins the render.

My configuration is vuepress@1.0.2, vuepress-plugin-mathjax@1.2.8,

Thanks!