We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 159e240 commit d2e0cd2Copy full SHA for d2e0cd2
src/mermaid-render.ts
@@ -6,9 +6,9 @@ export class MermaidRender {
6
7
public render(graph: Graph): string {
8
return `
9
-${this.renderLegendSection()}
10
\`\`\`mermaid
11
flowchart TD
+${this.renderLegendSection()}
12
${this.renderCssSection()}
13
${this.renderIssuesSection(graph.vertices)}
14
${this.renderDependencies(graph.edges)}
@@ -34,12 +34,8 @@ classDef completed fill:#ccffd8,color:#000;
34
}
35
36
37
-\`\`\`mermaid
38
-flowchart TD
39
-${this.renderCssSection()}
40
-
41
%% <Legend>
42
+legend --> start
43
subgraph legend["Legend"]
44
direction LR;
45
notstarted("Issue is not started"):::notstarted;
@@ -49,7 +45,6 @@ subgraph legend["Legend"]
49
end
50
46
51
47
%% </Legend>
52
-\`\`\`
53
48
`;
54
55
0 commit comments