##// END OF EJS Templates
print supported TARGETs for nbconvert --help
Paul Ivanov -
Show More
@@ -51,12 +51,20 b' ipython nbconvert latex Untitled0.ipynb # convert ipynb to LaTeX'
51 ipython nbconvert reveal Untitled0.ipynb # convert to Reveal (HTML/JS) slideshow
51 ipython nbconvert reveal Untitled0.ipynb # convert to Reveal (HTML/JS) slideshow
52 """
52 """
53
53
54
54 #-----------------------------------------------------------------------------
55 #-----------------------------------------------------------------------------
55 #Classes and functions
56 #Classes and functions
56 #-----------------------------------------------------------------------------
57 #-----------------------------------------------------------------------------
57
58
58 class NbConvertApp(Application):
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 description = Unicode(__doc__)
68 description = Unicode(__doc__)
61
69
62 examples = _examples
70 examples = _examples
General Comments 0
You need to be logged in to leave comments. Login now