##// END OF EJS Templates
Minor edits to magics doc
hongshaoyang -
Show More
@@ -5,18 +5,18 b' Built-in magic commands'
5 5 .. note::
6 6
7 7 To Jupyter users: Magics are specific to and provided by the IPython kernel.
8 Whether magics are available on a kernel is a decision that is made by
8 Whether Magics are available on a kernel is a decision that is made by
9 9 the kernel developer on a per-kernel basis. To work properly, Magics must
10 10 use a syntax element which is not valid in the underlying language. For
11 example, the IPython kernel uses the `%` syntax element for magics as `%`
12 is not a valid unary operator in Python. While, the syntax element has
13 meaning in other languages.
11 example, the IPython kernel uses the `%` syntax element for Magics as `%`
12 is not a valid unary operator in Python. However, `%` might have meaning in
13 other languages.
14 14
15 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
16 16 function that IPython ships with.
17 17
18 You can create an register your own magics with IPython. You can find many user
19 defined magics on `PyPI <https://pypi.io>`_. Feel free to publish your own and
18 You can create an register your own Magics with IPython. You can find many user
19 defined Magics on `PyPI <https://pypi.io>`_. Feel free to publish your own and
20 20 use the ``Framework :: IPython`` trove classifier.
21 21
22 22
General Comments 0
You need to be logged in to leave comments. Login now