ノートブック内にHTMLやその他のリッチコンテンツを組み込むためのIPythonのMarkdownセルが好きです。コマンド出力を出力セルで同様にフォーマットできるかどうか知りたいのですが。
HTMLを出力する私の関数の1つは次のとおりです。
print_html():
print """
<h2>Matplotlib's chart gallery (Click a chart to see the code to create it)</h2><br>
<div align="center"> <iframe title="Matplotlib Gallery" width="950"
height="250" src="http://matplotlib.org/gallery.html#api" frameborder="0"
allowfullscreen></iframe></div>
"""
上記のHTMLコードをマークダウン(入力)セルに配置すると、Matplotlibライブラリへの適切なリンクが生成されます。ただし、出力セルではプレーンテキストです。リッチコンテンツにする方法はありますか?