Show More
@@ -51,12 +51,20 b' ipython nbconvert latex Untitled0.ipynb # convert ipynb to LaTeX' | |||
|
51 | 51 | ipython nbconvert reveal Untitled0.ipynb # convert to Reveal (HTML/JS) slideshow |
|
52 | 52 | """ |
|
53 | 53 | |
|
54 | ||
|
54 | 55 | #----------------------------------------------------------------------------- |
|
55 | 56 | #Classes and functions |
|
56 | 57 | #----------------------------------------------------------------------------- |
|
57 | 58 | |
|
58 | 59 | class NbConvertApp(Application): |
|
59 | """Application used to convert to and from notebook file type (*.ipynb)""" | |
|
60 | __doc__ = """IPython notebook conversion utility | |
|
61 | ||
|
62 | Convert to and from notebook file type (*.ipynb) | |
|
63 | ||
|
64 | ipython nbconvert TARGET FILENAME | |
|
65 | ||
|
66 | Supported export TARGETs are: %s | |
|
67 | """ % (" ".join(get_export_names())) | |
|
60 | 68 | description = Unicode(__doc__) |
|
61 | 69 | |
|
62 | 70 | examples = _examples |
General Comments 0
You need to be logged in to leave comments.
Login now