##// END OF EJS Templates
add markdown cell magic function...
Matti Remes -
Show More
@@ -63,3 +63,8 b' class DisplayMagics(Magics):'
63 def html(self, line, cell):
63 def html(self, line, cell):
64 """Render the cell as a block of HTML"""
64 """Render the cell as a block of HTML"""
65 display(HTML(cell))
65 display(HTML(cell))
66
67 @cell_magic
68 def markdown(self, line, cell):
69 """Render the cell as Markdown text block"""
70 display(Markdown(cell))
General Comments 0
You need to be logged in to leave comments. Login now