Update index.html
Browse files- index.html +16 -1
index.html
CHANGED
|
@@ -16,6 +16,10 @@ body{
|
|
| 16 |
margin:40px auto;
|
| 17 |
padding:45px;
|
| 18 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
| 19 |
</style>
|
| 20 |
|
| 21 |
</head>
|
|
@@ -28,7 +32,18 @@ body{
|
|
| 28 |
<script src="https://cdn.jsdelivr.net/npm/mermaid/dist/mermaid.min.js"></script>
|
| 29 |
|
| 30 |
<script>
|
| 31 |
-
mermaid.initialize({
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 32 |
|
| 33 |
fetch("./deep-research-report.md") // same HF space
|
| 34 |
.then(r => r.text())
|
|
|
|
| 16 |
margin:40px auto;
|
| 17 |
padding:45px;
|
| 18 |
}
|
| 19 |
+
|
| 20 |
+
.mermaid svg {
|
| 21 |
+
max-width: 100%;
|
| 22 |
+
}
|
| 23 |
</style>
|
| 24 |
|
| 25 |
</head>
|
|
|
|
| 32 |
<script src="https://cdn.jsdelivr.net/npm/mermaid/dist/mermaid.min.js"></script>
|
| 33 |
|
| 34 |
<script>
|
| 35 |
+
mermaid.initialize({
|
| 36 |
+
startOnLoad:false,
|
| 37 |
+
theme:"dark",
|
| 38 |
+
themeVariables:{
|
| 39 |
+
background:"#0d1117",
|
| 40 |
+
primaryColor:"#1f6feb",
|
| 41 |
+
primaryTextColor:"#c9d1d9",
|
| 42 |
+
lineColor:"#8b949e",
|
| 43 |
+
secondaryColor:"#161b22",
|
| 44 |
+
tertiaryColor:"#21262d"
|
| 45 |
+
}
|
| 46 |
+
});
|
| 47 |
|
| 48 |
fetch("./deep-research-report.md") // same HF space
|
| 49 |
.then(r => r.text())
|