---
title: "Charts & Diagrams"
url: https://docs.sentry.io/contributing/pages/charts-diagrams/
---

# Charts & Diagrams

You can render charts and diagrams in you MDX files using [Mermaid](https://mermaid.js.org):

````txt
```mermaid
flowchart TD
  Start --> Stop
```
````

Will turn into this:

```mermaid
flowchart TD
    Start --> Stop
```

See the [Mermaid documentation](https://mermaid.js.org/intro/) to learn what types of charts and diagrams can be rendered.
