1 | initial version |
Try writing your output to an html file. Do something like:
f=open('myoutput.html','w')
f.write(some output)
f.write(some more output)
f.close()
That file should appear as a link in the output of the cell. If you click on the link, you should see your output as an html file.