Skip to content

Commit f08bf07

Browse files
committed
found more errors in the paths
1 parent 95181fe commit f08bf07

File tree

3 files changed

+17
-17
lines changed

3 files changed

+17
-17
lines changed

content/cn/docs/_index.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ Apache HugeGraph 是一套完整的图数据库生态系统,支持 OLTP 实时
1515

1616
| 我想要... | 从这里开始 |
1717
|----------|-----------|
18-
| **运行图查询** (OLTP) | [HugeGraph Server 快速开始](quickstart/hugegraph/hugegraph-server.md) |
19-
| **大规模图计算** (OLAP) | [图计算引擎](quickstart/computing/hugegraph-computer.md) |
20-
| **构建 AI/RAG 应用** | [HugeGraph-AI](quickstart/hugegraph-ai) |
21-
| **批量导入数据** | [HugeGraph Loader](quickstart/hugegraph-loader) |
22-
| **可视化管理图** | [Hubble Web UI](quickstart/hugegraph-hubble) |
18+
| **运行图查询** (OLTP) | [HugeGraph Server 快速开始](quickstart/hugegraph/hugegraph-server) |
19+
| **大规模图计算** (OLAP) | [图计算引擎](quickstart/computing/hugegraph-computer) |
20+
| **构建 AI/RAG 应用** | [HugeGraph-AI](quickstart/hugegraph-ai/quick_start) |
21+
| **批量导入数据** | [HugeGraph Loader](quickstart/toolchain/hugegraph-loader) |
22+
| **可视化管理图** | [Hubble Web UI](quickstart/toolchain/hugegraph-hubble) |
2323

2424
### 生态系统一览
2525

@@ -55,4 +55,4 @@ Apache HugeGraph 是一套完整的图数据库生态系统,支持 OLTP 实时
5555
| **分布式** | 海量存储、存算分离 | < 1000TB |
5656
| **Docker** | 快速体验 | 任意 |
5757

58-
[📖 详细介绍](introduction/)
58+
[📖 详细介绍](introduction/README)

content/en/docs/_index.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ Apache HugeGraph is a complete graph database ecosystem, supporting OLTP real-ti
1515

1616
| I want to... | Start here |
1717
|----------|-----------|
18-
| **Run graph queries** (OLTP) | [HugeGraph Server Quickstart](quickstart/hugegraph/hugegraph-server.md) |
19-
| **Large-scale graph computing** (OLAP) | [Graph Computing Engine](quickstart/computing/hugegraph-computer.md) |
20-
| **Build AI/RAG applications** | [HugeGraph-AI](quickstart/hugegraph-ai) |
21-
| **Batch import data** | [HugeGraph Loader](quickstart/hugegraph-loader) |
22-
| **Visualize and manage graphs** | [Hubble Web UI](quickstart/hugegraph-hubble) |
18+
| **Run graph queries** (OLTP) | [HugeGraph Server Quickstart](quickstart/hugegraph/hugegraph-server) |
19+
| **Large-scale graph computing** (OLAP) | [Graph Computing Engine](quickstart/computing/hugegraph-computer) |
20+
| **Build AI/RAG applications** | [HugeGraph-AI](quickstart/hugegraph-ai/quick_start) |
21+
| **Batch import data** | [HugeGraph Loader](quickstart/toolchain/hugegraph-loader) |
22+
| **Visualize and manage graphs** | [Hubble Web UI](quickstart/toolchain/hugegraph-hubble) |
2323

2424
### Ecosystem Overview
2525

@@ -55,4 +55,4 @@ Apache HugeGraph is a complete graph database ecosystem, supporting OLTP real-ti
5555
| **Distributed** | Massive storage, compute-storage separated | < 1000TB |
5656
| **Docker** | Quick start | Any |
5757

58-
[📖 Detailed Introduction](introduction/)
58+
[📖 Detailed Introduction](introduction/README)

dist/validate-links.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@ while read -r FILE; do
1313
# Using grep to find all matching links in the file
1414
while read -r MATCH; do
1515
if [ -z "$MATCH" ]; then continue; fi
16-
16+
1717
# Extract URL from ](url)
1818
LINK=${MATCH#*](}
1919
LINK=${LINK%)}
20-
20+
2121
# Remove anchor and query parameters
2222
CLEAN_LINK=$(echo "$LINK" | cut -d'#' -f1 | cut -d'?' -f1)
2323
CLEAN_LINK=${CLEAN_LINK%/}
24-
24+
2525
# Determine target file path based on language prefix
2626
if [[ "$CLEAN_LINK" == /docs/* ]]; then
2727
TARGET_PATH="content/en${CLEAN_LINK}"
@@ -33,7 +33,7 @@ while read -r FILE; do
3333

3434
# Check for file existence variations
3535
FOUND=false
36-
36+
3737
# Check 1: As .md file
3838
if [[ -f "${TARGET_PATH}.md" ]]; then
3939
FOUND=true
@@ -47,7 +47,7 @@ while read -r FILE; do
4747
elif [[ -f "${TARGET_PATH}/README.md" ]]; then
4848
FOUND=true
4949
fi
50-
50+
5151
if [ "$FOUND" = false ]; then
5252
echo "Error: Broken link in $FILE"
5353
echo " Link: $LINK"

0 commit comments

Comments
 (0)