##// END OF EJS Templates
Adding nbconvert subcommand.
Brian E. Granger -
Show More
@@ -81,6 +81,8 b' ipython help profile # show the help for the profile subcmd'
81 81
82 82 ipython locate # print the path to the IPython directory
83 83 ipython locate profile foo # print the path to the directory for profile `foo`
84
85 ipython nbconvert # convert notebooks to/from other formats
84 86 """
85 87
86 88 #-----------------------------------------------------------------------------
@@ -244,6 +246,9 b' class TerminalIPythonApp(BaseIPythonApplication, InteractiveShellApp):'
244 246 history=('IPython.core.historyapp.HistoryApp',
245 247 "Manage the IPython history database."
246 248 ),
249 nbconvert=('IPython.nbconvert.nbconvertapp.NbConvertApp',
250 "Convert notebooks to/from other formats."
251 ),
247 252 ))
248 253
249 254 # *do* autocreate requested profile, but don't create the config file.
General Comments 0
You need to be logged in to leave comments. Login now