##// END OF EJS Templates
Merge pull request #3908 from minrk/whatsnew-nbconvert...
Paul Ivanov -
r11997:3e1b96f4 merge
parent child Browse files
Show More
@@ -154,11 +154,15 b' IPython notebooks to various other formats.'
154
154
155 To use nbconvert to convert various file formats::
155 To use nbconvert to convert various file formats::
156
156
157 ipython nbconvert --format full_html *.ipynb
157 ipython nbconvert --to html *.ipynb
158
158
159 See ``ipython nbconvert --help`` for more information.
159 See ``ipython nbconvert --help`` for more information.
160 nbconvert depends on `pandoc`_ for many of the translations to and from various formats.
160 nbconvert depends on `pandoc`_ for many of the translations to and from various formats.
161
161
162 .. seealso::
163
164 :ref:`nbconvert`
165
162 .. _pandoc: http://johnmacfarlane.net/pandoc/
166 .. _pandoc: http://johnmacfarlane.net/pandoc/
163
167
164 Notebook
168 Notebook
@@ -172,6 +176,8 b' Major changes to the IPython Notebook in 1.0:'
172 than traditional save. If you change nothing about your save habits,
176 than traditional save. If you change nothing about your save habits,
173 you will always have a checkpoint that you have written,
177 you will always have a checkpoint that you have written,
174 and an autosaved file that is kept up to date.
178 and an autosaved file that is kept up to date.
179 - The notebook supports :func:`raw_input` / :func:`input`, and thus also ``%debug``,
180 and many other Python calls that expect user input.
175 - You can load custom javascript and CSS in the notebook by editing the files
181 - You can load custom javascript and CSS in the notebook by editing the files
176 :file:`$(ipython locate profile)/static/custom/custom.{js,css}`.
182 :file:`$(ipython locate profile)/static/custom/custom.{js,css}`.
177 - Add ``%%html``, ``%%svg``, ``%%javascript``, and ``%%latex`` cell magics
183 - Add ``%%html``, ``%%svg``, ``%%javascript``, and ``%%latex`` cell magics
@@ -183,7 +189,8 b' Major changes to the IPython Notebook in 1.0:'
183 - ``_repr_foo_`` methods can return a tuple of (data, metadata),
189 - ``_repr_foo_`` methods can return a tuple of (data, metadata),
184 where metadata is a dict containing metadata about the displayed object.
190 where metadata is a dict containing metadata about the displayed object.
185 This is used to set size, etc. for retina graphics. To enable retina matplotlib figures,
191 This is used to set size, etc. for retina graphics. To enable retina matplotlib figures,
186 simply set ``InlineBackend.figure_format = 'retina'`` for 2x PNG figures.
192 simply set ``InlineBackend.figure_format = 'retina'`` for 2x PNG figures,
193 in your :ref:`IPython config file <config_overview>` or via the ``%config`` magic.
187 - Add display.FileLink and FileLinks for quickly displaying HTML links to local files.
194 - Add display.FileLink and FileLinks for quickly displaying HTML links to local files.
188 - Cells have metadata, which can be edited via cell toolbars.
195 - Cells have metadata, which can be edited via cell toolbars.
189 This metadata can be used by external code (e.g. reveal.js or exporters),
196 This metadata can be used by external code (e.g. reveal.js or exporters),
@@ -196,7 +203,6 b' Major changes to the IPython Notebook in 1.0:'
196 supported values.
203 supported values.
197 - The static files path can be found as ``IPython.html.DEFAULT_STATIC_FILES_PATH``,
204 - The static files path can be found as ``IPython.html.DEFAULT_STATIC_FILES_PATH``,
198 which may be changed by package managers.
205 which may be changed by package managers.
199 - The notebook supports :func:`raw_input`, and thus also ``%debug``.
200 - IPython's CSS is installed in :file:`static/css/style.min.css`
206 - IPython's CSS is installed in :file:`static/css/style.min.css`
201 (all style, including bootstrap), and :file:`static/css/ipython.min.css`,
207 (all style, including bootstrap), and :file:`static/css/ipython.min.css`,
202 which only has IPython's own CSS. The latter file should be useful for embedding
208 which only has IPython's own CSS. The latter file should be useful for embedding
General Comments 0
You need to be logged in to leave comments. Login now