我喜歡IPython的Markdown單元格以將HTML和其他豐富的內容合併到筆記本電腦中。我想知道是否可以在輸出單元格中格式化命令輸出。使輸出單元格像Markdown
這裏是我的函數輸出HTML之一:上述
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庫。但在輸出單元中,它只是純文本。任何方式使它豐富的內容?
解決方案至今只爲您直接從IPython中調用函數的工作 - 如果我們想呈現在打印HTML /從內部被稱爲測井方法一個函數? – Peter