Spaces:
Running
Running
Update index.html
Browse files- index.html +15 -5
index.html
CHANGED
|
@@ -8,17 +8,27 @@
|
|
| 8 |
|
| 9 |
<style>
|
| 10 |
.chart{
|
| 11 |
-
|
| 12 |
-
|
|
|
|
|
|
|
|
|
|
| 13 |
</style>
|
| 14 |
</head>
|
| 15 |
<body>
|
| 16 |
<div class="chart">
|
| 17 |
<pre id = "test1" class="mermaid">
|
| 18 |
graph TD
|
| 19 |
-
A[Start]
|
| 20 |
-
B
|
| 21 |
-
C
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 22 |
</pre>
|
| 23 |
</div>
|
| 24 |
|
|
|
|
| 8 |
|
| 9 |
<style>
|
| 10 |
.chart{
|
| 11 |
+
align-content: center;
|
| 12 |
+
display: flex;
|
| 13 |
+
flex-direction: column;
|
| 14 |
+
align-items: center;
|
| 15 |
+
}
|
| 16 |
</style>
|
| 17 |
</head>
|
| 18 |
<body>
|
| 19 |
<div class="chart">
|
| 20 |
<pre id = "test1" class="mermaid">
|
| 21 |
graph TD
|
| 22 |
+
A[Start]
|
| 23 |
+
B[Input User Request]
|
| 24 |
+
C[Generate Mermaid Graph]
|
| 25 |
+
D[Present Mermaid Graph]
|
| 26 |
+
E[End]
|
| 27 |
+
|
| 28 |
+
A --> B
|
| 29 |
+
B --> C
|
| 30 |
+
C --> D
|
| 31 |
+
D --> E
|
| 32 |
</pre>
|
| 33 |
</div>
|
| 34 |
|