##// END OF EJS Templates
what's new tweaks...
MinRK -
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
@@ -183,7 +187,8 b' Major changes to the IPython Notebook in 1.0:'
183 - ``_repr_foo_`` methods can return a tuple of (data, metadata),
187 - ``_repr_foo_`` methods can return a tuple of (data, metadata),
184 where metadata is a dict containing metadata about the displayed object.
188 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,
189 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.
190 simply set ``InlineBackend.figure_format = 'retina'`` for 2x PNG figures,
191 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.
192 - Add display.FileLink and FileLinks for quickly displaying HTML links to local files.
188 - Cells have metadata, which can be edited via cell toolbars.
193 - 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),
194 This metadata can be used by external code (e.g. reveal.js or exporters),
General Comments 0
You need to be logged in to leave comments. Login now