Displays the Markdown representation of an object. Parameters ---------- objs : tuple of objects The Python objects to display, or if raw=True raw markdown data to display. raw : bool Are the data objects raw data or Python objects that need to be for
(*objs, **kwargs)
| 431 | |
| 432 | |
| 433 | def display_markdown(*objs, **kwargs): |
| 434 | """Displays the Markdown representation of an object. |
| 435 | |
| 436 | Parameters |
| 437 | ---------- |
| 438 | objs : tuple of objects |
| 439 | The Python objects to display, or if raw=True raw markdown data to |
| 440 | display. |
| 441 | raw : bool |
| 442 | Are the data objects raw data or Python objects that need to be |
| 443 | formatted before display? [default: False] |
| 444 | metadata : dict (optional) |
| 445 | Metadata to be associated with the specific mimetype output. |
| 446 | """ |
| 447 | |
| 448 | _display_mimetype('text/markdown', objs, **kwargs) |
| 449 | |
| 450 | |
| 451 | def display_svg(*objs, **kwargs): |
nothing calls this directly
no test coverage detected