##// END OF EJS Templates
don't let missing config prevent embed from launching...
don't let missing config prevent embed from launching load_default_config() shouldn't raise on absence of the default config file, since it won't exist for users who don't configure IPython. closes gh-553

File last commit:

r1248:19e3b286
r4168:330ffc28
Show More
nbexample.py
11 lines | 268 B | text/x-python | PythonLexer
from notebook.markup import rest
rest.title('This is a Python Notebook')
rest.heading(1,'A first-level heading')
rest.text("""\
Some plain text, without any special formatting.
Below, we define a simple function to add two numbers.""")
def add(x,y):
return x+y