##// END OF EJS Templates
Merge pull request #12017 from Carreau/cast_cleanup_II...
Merge pull request #12017 from Carreau/cast_cleanup_II cast_unicode code simplification.

File last commit:

r24592:01b0f00c
r25340:88a02754 merge
Show More
magics.rst
23 lines | 937 B | text/x-rst | RstLexer
Thomas Kluyver
Generate documentation of line & cell magics
r18294 =======================
Built-in magic commands
=======================
Matthias Bussonnier
One more pass on the docs....
r22598 .. note::
Carol Willing
Edits to magics doc
r22601 To Jupyter users: Magics are specific to and provided by the IPython kernel.
hongshaoyang
Minor edits to magics doc
r24592 Whether Magics are available on a kernel is a decision that is made by
Carol Willing
Edits to magics doc
r22601 the kernel developer on a per-kernel basis. To work properly, Magics must
use a syntax element which is not valid in the underlying language. For
hongshaoyang
Minor edits to magics doc
r24592 example, the IPython kernel uses the `%` syntax element for Magics as `%`
is not a valid unary operator in Python. However, `%` might have meaning in
other languages.
Matthias Bussonnier
One more pass on the docs....
r22598
hongshaoyang
Minor edits to magics doc
r24592 Here is the help auto-generated from the docstrings of all the available Magics
Matthias Bussonnier
One more pass on the docs....
r22598 function that IPython ships with.
hongshaoyang
Minor edits to magics doc
r24592 You can create an register your own Magics with IPython. You can find many user
defined Magics on `PyPI <https://pypi.io>`_. Feel free to publish your own and
Matthias Bussonnier
One more pass on the docs....
r22598 use the ``Framework :: IPython`` trove classifier.
Thomas Kluyver
Generate documentation of line & cell magics
r18294 .. include:: magics-generated.txt