In iPython Notebook I have a cell where I define a variable (say html) and assign to it an html content (response content of a http get request). I would like to render this variable into another cell as html. Is it possible? How can I do it?
eg:
[1] html = '''<html><h1>a heading</h1><ul><li>one</li><li>two</li><li>three</li></ul></html>'''
I would like to render this in the next cell.