notablemind / jupyter-nodejs

A node.js kernel for jupyter/ipython
http://nbviewer.ipython.org/gist/jaredly/404a36306fdee6a1737a
MIT License
682 stars 70 forks source link

Issues with Javascript magic #53

Open nmingotti opened 6 years ago

nmingotti commented 6 years ago

It seems Javascript magic is not recognized.

Example: %%javascript console.log("hello world") ==> Error, Unknown magic "javascript".

My aim in using Javascript magic is to run the following code to enable numbering of LaTeX equations:

%%javascript MathJax.Hub.Config({ TeX: { equationNumbers: { autoNumber: "AMS" } } });