@@ -1366,12 +1366,12 @@ <h3 class="text-sm font-medium text-gray-900 mb-2">注意</h3>
1366
1366
1367
1367
< div class ="mermaid-wrapper my-4 relative w-full " style ="min-width: min-content; ">
1368
1368
<!-- 加载提示 -->
1369
- < div id ="mermaid-pbd8tsffw -loading " class ="absolute inset-0 flex items-center justify-center bg-white/80 dark:bg-gray-900/80 z-10 ">
1369
+ < div id ="mermaid-j0v4x7tpu -loading " class ="absolute inset-0 flex items-center justify-center bg-white/80 dark:bg-gray-900/80 z-10 ">
1370
1370
< span class ="text-gray-500 text-sm "> 加载图...</ span >
1371
1371
</ div >
1372
1372
1373
1373
<!-- Mermaid 图表容器 -->
1374
- < div id ="mermaid-pbd8tsffw " class ="mermaid overflow-x-auto w-full " style ="opacity: 0; transition: opacity 0.2s ease-in-out; ">
1374
+ < div id ="mermaid-j0v4x7tpu " class ="mermaid overflow-x-auto w-full " style ="opacity: 0; transition: opacity 0.2s ease-in-out; ">
1375
1375
flowchart LR
1376
1376
id
1377
1377
</ div >
@@ -1403,8 +1403,8 @@ <h3 class="text-sm font-medium text-gray-900 mb-2">注意</h3>
1403
1403
// 初始化 mermaid
1404
1404
window . mermaidReady . then ( mermaid => {
1405
1405
try {
1406
- const chartElement = document . getElementById ( 'mermaid-pbd8tsffw ' ) ;
1407
- const loadingElement = document . getElementById ( 'mermaid-pbd8tsffw -loading' ) ;
1406
+ const chartElement = document . getElementById ( 'mermaid-j0v4x7tpu ' ) ;
1407
+ const loadingElement = document . getElementById ( 'mermaid-j0v4x7tpu -loading' ) ;
1408
1408
1409
1409
// 先设置容器的最小宽度
1410
1410
chartElement . closest ( '.mermaid-wrapper' ) . style . minWidth = 'min-content' ;
@@ -1418,7 +1418,7 @@ <h3 class="text-sm font-medium text-gray-900 mb-2">注意</h3>
1418
1418
1419
1419
// 渲染图表
1420
1420
mermaid . run ( {
1421
- querySelector : '#mermaid-pbd8tsffw '
1421
+ querySelector : '#mermaid-j0v4x7tpu '
1422
1422
} ) . then ( ( ) => {
1423
1423
// 平滑显示图表
1424
1424
chartElement . style . opacity = '1' ;
@@ -1432,7 +1432,7 @@ <h3 class="text-sm font-medium text-gray-900 mb-2">注意</h3>
1432
1432
} ) ;
1433
1433
} catch ( error ) {
1434
1434
console . error ( 'Mermaid init error:' , error ) ;
1435
- document . getElementById ( 'mermaid-pbd8tsffw -loading' ) . innerHTML =
1435
+ document . getElementById ( 'mermaid-j0v4x7tpu -loading' ) . innerHTML =
1436
1436
'<span class="text-red-500">无法初始化图</span>' ;
1437
1437
}
1438
1438
} ) ;
@@ -1455,12 +1455,12 @@ <h3 class="text-sm font-medium text-gray-900 mb-2">注意</h3>
1455
1455
1456
1456
< div class ="mermaid-wrapper my-4 relative w-full " style ="min-width: min-content; ">
1457
1457
<!-- 加载提示 -->
1458
- < div id ="mermaid-m4hfqp0qv -loading " class ="absolute inset-0 flex items-center justify-center bg-white/80 dark:bg-gray-900/80 z-10 ">
1458
+ < div id ="mermaid-iv6k5bsya -loading " class ="absolute inset-0 flex items-center justify-center bg-white/80 dark:bg-gray-900/80 z-10 ">
1459
1459
< span class ="text-gray-500 text-sm "> 加载图...</ span >
1460
1460
</ div >
1461
1461
1462
1462
<!-- Mermaid 图表容器 -->
1463
- < div id ="mermaid-m4hfqp0qv " class ="mermaid overflow-x-auto w-full " style ="opacity: 0; transition: opacity 0.2s ease-in-out; ">
1463
+ < div id ="mermaid-iv6k5bsya " class ="mermaid overflow-x-auto w-full " style ="opacity: 0; transition: opacity 0.2s ease-in-out; ">
1464
1464
sequenceDiagram
1465
1465
Alice-> > John: Hello John, how are you?
1466
1466
John--> > Alice: Great!
@@ -1493,8 +1493,8 @@ <h3 class="text-sm font-medium text-gray-900 mb-2">注意</h3>
1493
1493
// 初始化 mermaid
1494
1494
window . mermaidReady . then ( mermaid => {
1495
1495
try {
1496
- const chartElement = document . getElementById ( 'mermaid-m4hfqp0qv ' ) ;
1497
- const loadingElement = document . getElementById ( 'mermaid-m4hfqp0qv -loading' ) ;
1496
+ const chartElement = document . getElementById ( 'mermaid-iv6k5bsya ' ) ;
1497
+ const loadingElement = document . getElementById ( 'mermaid-iv6k5bsya -loading' ) ;
1498
1498
1499
1499
// 先设置容器的最小宽度
1500
1500
chartElement . closest ( '.mermaid-wrapper' ) . style . minWidth = 'min-content' ;
@@ -1508,7 +1508,7 @@ <h3 class="text-sm font-medium text-gray-900 mb-2">注意</h3>
1508
1508
1509
1509
// 渲染图表
1510
1510
mermaid . run ( {
1511
- querySelector : '#mermaid-m4hfqp0qv '
1511
+ querySelector : '#mermaid-iv6k5bsya '
1512
1512
} ) . then ( ( ) => {
1513
1513
// 平滑显示图表
1514
1514
chartElement . style . opacity = '1' ;
@@ -1522,7 +1522,7 @@ <h3 class="text-sm font-medium text-gray-900 mb-2">注意</h3>
1522
1522
} ) ;
1523
1523
} catch ( error ) {
1524
1524
console . error ( 'Mermaid init error:' , error ) ;
1525
- document . getElementById ( 'mermaid-m4hfqp0qv -loading' ) . innerHTML =
1525
+ document . getElementById ( 'mermaid-iv6k5bsya -loading' ) . innerHTML =
1526
1526
'<span class="text-red-500">无法初始化图</span>' ;
1527
1527
}
1528
1528
} ) ;
@@ -1545,12 +1545,12 @@ <h3 class="text-sm font-medium text-gray-900 mb-2">注意</h3>
1545
1545
1546
1546
< div class ="mermaid-wrapper my-4 relative w-full " style ="min-width: min-content; ">
1547
1547
<!-- 加载提示 -->
1548
- < div id ="mermaid-04pcb3t0p -loading " class ="absolute inset-0 flex items-center justify-center bg-white/80 dark:bg-gray-900/80 z-10 ">
1548
+ < div id ="mermaid-tixjoi3i6 -loading " class ="absolute inset-0 flex items-center justify-center bg-white/80 dark:bg-gray-900/80 z-10 ">
1549
1549
< span class ="text-gray-500 text-sm "> 加载图...</ span >
1550
1550
</ div >
1551
1551
1552
1552
<!-- Mermaid 图表容器 -->
1553
- < div id ="mermaid-04pcb3t0p " class ="mermaid overflow-x-auto w-full " style ="opacity: 0; transition: opacity 0.2s ease-in-out; ">
1553
+ < div id ="mermaid-tixjoi3i6 " class ="mermaid overflow-x-auto w-full " style ="opacity: 0; transition: opacity 0.2s ease-in-out; ">
1554
1554
mindmap
1555
1555
root((mindmap))
1556
1556
Origins
@@ -1597,8 +1597,8 @@ <h3 class="text-sm font-medium text-gray-900 mb-2">注意</h3>
1597
1597
// 初始化 mermaid
1598
1598
window . mermaidReady . then ( mermaid => {
1599
1599
try {
1600
- const chartElement = document . getElementById ( 'mermaid-04pcb3t0p ' ) ;
1601
- const loadingElement = document . getElementById ( 'mermaid-04pcb3t0p -loading' ) ;
1600
+ const chartElement = document . getElementById ( 'mermaid-tixjoi3i6 ' ) ;
1601
+ const loadingElement = document . getElementById ( 'mermaid-tixjoi3i6 -loading' ) ;
1602
1602
1603
1603
// 先设置容器的最小宽度
1604
1604
chartElement . closest ( '.mermaid-wrapper' ) . style . minWidth = 'min-content' ;
@@ -1612,7 +1612,7 @@ <h3 class="text-sm font-medium text-gray-900 mb-2">注意</h3>
1612
1612
1613
1613
// 渲染图表
1614
1614
mermaid . run ( {
1615
- querySelector : '#mermaid-04pcb3t0p '
1615
+ querySelector : '#mermaid-tixjoi3i6 '
1616
1616
} ) . then ( ( ) => {
1617
1617
// 平滑显示图表
1618
1618
chartElement . style . opacity = '1' ;
@@ -1626,7 +1626,7 @@ <h3 class="text-sm font-medium text-gray-900 mb-2">注意</h3>
1626
1626
} ) ;
1627
1627
} catch ( error ) {
1628
1628
console . error ( 'Mermaid init error:' , error ) ;
1629
- document . getElementById ( 'mermaid-04pcb3t0p -loading' ) . innerHTML =
1629
+ document . getElementById ( 'mermaid-tixjoi3i6 -loading' ) . innerHTML =
1630
1630
'<span class="text-red-500">无法初始化图</span>' ;
1631
1631
}
1632
1632
} ) ;
0 commit comments