以下 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>')
在第一个示例中我做错了什么吗?如果这是一个错误,我在哪里提交错误报告?