MCPcopy Create free account
hub / github.com/ipython/ipython / display_markdown

Function display_markdown

IPython/core/display.py:433–448  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

431
432
433def 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
451def display_svg(*objs, **kwargs):

Callers

nothing calls this directly

Calls 1

_display_mimetypeFunction · 0.85

Tested by

no test coverage detected