From b51ccffc66ceb05fe21e2e4aa9880fb3e565a02a 2016-05-06 18:10:05 From: Matthias Bussonnier Date: 2016-05-06 18:10:05 Subject: [PATCH] Precise that %%js is an alias of %%javascript --- diff --git a/IPython/core/magics/display.py b/IPython/core/magics/display.py index e08fef3..c4a8f44 100644 --- a/IPython/core/magics/display.py +++ b/IPython/core/magics/display.py @@ -32,7 +32,10 @@ class DisplayMagics(Magics): @cell_magic def js(self, line, cell): - """Run the cell block of Javascript code""" + """Run the cell block of Javascript code + + Alias of `%%javascript` + """ self.javascript(line, cell) @cell_magic