次の iframe は ipython-notebook ではレンダリングされません
from IPython.display import HTML
HTML('<iframe src=http://stackoverflow.com width=700 height=350></iframe>')
ただし、これはレンダリングされます (注意、.com と .org の違い)
from IPython.display import HTML
HTML('<iframe src=http://stackoverflow.org width=700 height=350></iframe>')
最初の例で間違っていることはありますか? これがバグである場合、どこにバグ レポートを提出すればよいですか?