MCPcopy Index your code
hub / github.com/ipython/ipython / js

Method js

IPython/core/magics/display.py:35–45  ·  view source on GitHub ↗

Run the cell block of Javascript code Alias of `%%javascript` Starting with IPython 8.0 %%javascript is pending deprecation to be replaced by a more flexible system Please See https://github.com/ipython/ipython/issues/13376

(self, line, cell)

Source from the content-addressed store, hash-verified

33
34 @cell_magic
35 def js(self, line, cell):
36 """Run the cell block of Javascript code
37
38 Alias of `%%javascript`
39
40 Starting with IPython 8.0 %%javascript is pending deprecation to be replaced
41 by a more flexible system
42
43 Please See https://github.com/ipython/ipython/issues/13376
44 """
45 self.javascript(line, cell)
46
47 @cell_magic
48 def javascript(self, line, cell):

Callers

nothing calls this directly

Calls 1

javascriptMethod · 0.95

Tested by

no test coverage detected