##// END OF EJS Templates
- Final commits for 0.8.0 tag....
- Final commits for 0.8.0 tag. - Missing part of win32 install patch by N. Pernetty that I'd inadvertedly not applied. - Unicode fixes for emacs under win32 - Small bug fix (recently introduced) in pycolorize. - Improve handling of history file after %run, reduces memory usage.

File last commit:

r0:6f629fcc
r595:020f0804
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