Render the cell as a block of HTML
(self, line, cell)
| 79 | ) |
| 80 | @cell_magic |
| 81 | def html(self, line, cell): |
| 82 | """Render the cell as a block of HTML""" |
| 83 | args = magic_arguments.parse_argstring(self.html, line) |
| 84 | html = HTML(cell) |
| 85 | if args.isolated: |
| 86 | display(html, metadata={'text/html':{'isolated':True}}) |
| 87 | else: |
| 88 | display(html) |
| 89 | |
| 90 | @cell_magic |
| 91 | def markdown(self, line, cell): |
nothing calls this directly
no test coverage detected