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)
| 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): |
nothing calls this directly
no test coverage detected