**Language** Mermaid is a language for creating diagrams using text and code. An example is: ```mermaid graph TD A[Start] --> B{Is it?}; B -->|Yes| C[OK]; C --> D[Rethink]; D --> B; B ---->|No| E[End]; ``` Which can be rendered into the diagram:  **Additional resources** - [Official website](https://mermaid-js.github.io/mermaid/) - [Documentation](https://mermaid-js.github.io/mermaid/#/flowchart) - [Git Repo](https://github.com/mermaid-js/mermaid)