##// END OF EJS Templates
Edits to magics doc
Carol Willing -
Show More
@@ -4,12 +4,13 b' Built-in magic commands'
4
4
5 .. note::
5 .. note::
6
6
7 To Jupyter users: Magics are specifit to the IPython kernel. Other kernels
7 To Jupyter users: Magics are specific to and provided by the IPython kernel.
8 may be implementing magics but this decision is a per-kernel one. To be able
8 Whether magics are available on a kernel is a decision that is made by
9 to work, Magics need to use a syntax which is not valid in the language they
9 the kernel developer on a per-kernel basis. To work properly, Magics must
10 are implemented. IPython choosed the `%` as it is not a valid unary operator
10 use a syntax element which is not valid in the underlying language. For
11 in Python. It is in other languages.
11 example, the IPython kernel uses the `%` syntax element for magics as `%`
12
12 is not a valid unary operator in Python. While, the syntax element has
13 meaning in other languages.
13
14
14 Here is the help auto generated from the docstrings of all the available magics
15 Here is the help auto generated from the docstrings of all the available magics
15 function that IPython ships with.
16 function that IPython ships with.
General Comments 0
You need to be logged in to leave comments. Login now