diff --git a/docs/source/whatsnew/version1.0.rst b/docs/source/whatsnew/version1.0.rst index 2a5c6e5..c997573 100644 --- a/docs/source/whatsnew/version1.0.rst +++ b/docs/source/whatsnew/version1.0.rst @@ -154,11 +154,15 @@ IPython notebooks to various other formats. To use nbconvert to convert various file formats:: - ipython nbconvert --format full_html *.ipynb + ipython nbconvert --to html *.ipynb See ``ipython nbconvert --help`` for more information. nbconvert depends on `pandoc`_ for many of the translations to and from various formats. +.. seealso:: + + :ref:`nbconvert` + .. _pandoc: http://johnmacfarlane.net/pandoc/ Notebook @@ -172,6 +176,8 @@ Major changes to the IPython Notebook in 1.0: than traditional save. If you change nothing about your save habits, you will always have a checkpoint that you have written, and an autosaved file that is kept up to date. +- The notebook supports :func:`raw_input` / :func:`input`, and thus also ``%debug``, + and many other Python calls that expect user input. - You can load custom javascript and CSS in the notebook by editing the files :file:`$(ipython locate profile)/static/custom/custom.{js,css}`. - Add ``%%html``, ``%%svg``, ``%%javascript``, and ``%%latex`` cell magics @@ -183,7 +189,8 @@ Major changes to the IPython Notebook in 1.0: - ``_repr_foo_`` methods can return a tuple of (data, metadata), where metadata is a dict containing metadata about the displayed object. This is used to set size, etc. for retina graphics. To enable retina matplotlib figures, - simply set ``InlineBackend.figure_format = 'retina'`` for 2x PNG figures. + simply set ``InlineBackend.figure_format = 'retina'`` for 2x PNG figures, + in your :ref:`IPython config file ` or via the ``%config`` magic. - Add display.FileLink and FileLinks for quickly displaying HTML links to local files. - Cells have metadata, which can be edited via cell toolbars. This metadata can be used by external code (e.g. reveal.js or exporters), @@ -196,7 +203,6 @@ Major changes to the IPython Notebook in 1.0: supported values. - The static files path can be found as ``IPython.html.DEFAULT_STATIC_FILES_PATH``, which may be changed by package managers. -- The notebook supports :func:`raw_input`, and thus also ``%debug``. - IPython's CSS is installed in :file:`static/css/style.min.css` (all style, including bootstrap), and :file:`static/css/ipython.min.css`, which only has IPython's own CSS. The latter file should be useful for embedding