Skip to content

GitLab

  • Projects
  • Groups
  • Snippets
  • Help
    • Loading...
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
    • Switch to GitLab Next
  • Sign in / Register
GitLab FOSS
GitLab FOSS
  • Project overview
    • Project overview
    • Details
    • Activity
    • Releases
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
    • Locked Files
  • Issues 0
    • Issues 0
    • List
    • Boards
    • Labels
    • Service Desk
    • Milestones
    • Iterations
  • Merge Requests 0
    • Merge Requests 0
  • Requirements
    • Requirements
    • List
  • Operations
    • Operations
    • Incidents
    • Environments
  • Packages & Registries
    • Packages & Registries
    • Container Registry
  • Analytics
    • Analytics
    • Code Review
    • Insights
    • Issue
    • Repository
    • Value Stream
  • Snippets
    • Snippets
  • Members
    • Members
  • Activity
  • Graph
  • Create a new issue
  • Commits
  • Issue Boards
Collapse sidebar
  • GitLab.org
  • GitLab FOSSGitLab FOSS
  • Issues
  • #3711

Closed
Open
Opened Nov 27, 2015 by Stanislav Berkov@stas-berkov

Introduce Mermaid diagram support in markdown editor/preview

There are many markdown editors (e.g. http://pad.haroopress.com/user.html) that support mermaid diagrams (http://knsv.github.io/mermaid/). Mermaid is a "markdown for diagrams". It supports diagrams: graphs, sequence diagrams, gantt diagrams. Idea is to allow embedding such diagrams right from source markdown file, e.g.

```mermaid
graph TD;
    A-->B;
    A-->C;
    B-->D;
    C-->D;
```

This code block shall be rendered into diagram

diag

This is very useful feature for documenting code/high level design/architecture.

Assignee
Assign to
10.3
Milestone
10.3 (Past due)
Assign milestone
Time tracking
None
Due date
None
Reference: gitlab-org/gitlab-foss#3711