##// END OF EJS Templates
Give the ibrowse cursor row a blue background....
Give the ibrowse cursor row a blue background. Fix fetching new display rows when the browser scrolls more than a screenful (e.g. by using the goto command).

File last commit:

r0:6f629fcc
r346:86043c64
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