> ## Documentation Index
> Fetch the complete documentation index at: https://wiki.latch.bio/llms.txt
> Use this file to discover all available pages before exploring further.

# Markdown Cell

> Add descriptive text to your layout using Markdown.

You can insert text cells into your Plot notebook. Markdown syntax is supported for formatting.

<video autoPlay muted loop playsInline className="w-full aspect-video" class="rounded-md">
  <source src="https://mintcdn.com/latchbio/nFvCRsD3GeYvKtOX/images/plots/text-display/table-viewer-opti.mp4?fit=max&auto=format&n=nFvCRsD3GeYvKtOX&q=85&s=0410559f8afcd467294cfae1e469c36c" data-path="images/plots/text-display/table-viewer-opti.mp4" />
</video>

### Adding Spoilers

Create a collapsible component for toggling content

<img src="https://mintcdn.com/latchbio/rZf7ybfryGn4thLo/images/plots/markdown-spoiler.png?fit=max&auto=format&n=rZf7ybfryGn4thLo&q=85&s=611b34d5cacea33e1b1eca86c35cc0b6" className="w-full rounded" width="1536" height="204" data-path="images/plots/markdown-spoiler.png" />

```python theme={null}
from lplots.widgets.text import w_text_output

w_text_output(content=f"""

### Section Title

<details>
<summary>Spoiler Title</summary>
Spoiler body text...
</details>

""")

```
