Files
textual/docs/widgets/markdown_viewer.md
Rodrigo Girão Serrão d787f61090 State version of widget addition in docs. (#2144)
* State version of widget addition in docs.

Related issues: #2133

* Fix ListX version info.

* Retroactively update changelog.
2023-03-27 22:32:18 +01:00

1.0 KiB

MarkdownViewer

!!! tip "Added in version 0.11.0"

A Widget to display Markdown content with an optional Table of Contents.

  • Focusable
  • Container

!!! note

This Widget adds browser-like functionality on top of the [Markdown](./markdown.md) widget.

Example

The following example displays Markdown from a string and a Table of Contents.

=== "Output"

```{.textual path="docs/examples/widgets/markdown_viewer.py" columns="100" lines="42"}
```

=== "markdown.py"

~~~python
--8<-- "docs/examples/widgets/markdown_viewer.py"
~~~

Reactive Attributes

Name Type Default Description
show_table_of_contents bool True Wether a Table of Contents should be displayed with the Markdown.

See Also

  • [MarkdownViewer][textual.widgets.MarkdownViewer] code reference
  • [Markdown][textual.widgets.Markdown] code reference