Skip to content

Commit 762a381

Browse files
committed
fix(docs): correct broken links in academy index pages
Fixed relative paths for Arithmetic, Range, and RLE algorithm links in the academy index pages. These links were pointing to non-existent files in the academy directory instead of the correct algorithms directory.
1 parent 2781fcd commit 762a381

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

docs/en/academy/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Welcome to the CompressKit Algorithm Academy. Here you will gain deep understand
3434
Encodes the entire message as a single number in [0,1) interval, approaching entropy limit.
3535
</div>
3636
<div class="feature-tags">
37-
<a href="./arithmetic" class="feature-tag">Learn More</a>
37+
<a href="../algorithms/arithmetic" class="feature-tag">Learn More</a>
3838
<span class="feature-tag">L ≈ H + ε</span>
3939
</div>
4040
</div>
@@ -45,7 +45,7 @@ Welcome to the CompressKit Algorithm Academy. Here you will gain deep understand
4545
Integer-based arithmetic coding variant, avoiding floating-point precision issues.
4646
</div>
4747
<div class="feature-tags">
48-
<a href="./range" class="feature-tag">Learn More</a>
48+
<a href="../algorithms/range" class="feature-tag">Learn More</a>
4949
<span class="feature-tag">Byte-level I/O</span>
5050
</div>
5151
</div>
@@ -56,7 +56,7 @@ Welcome to the CompressKit Algorithm Academy. Here you will gain deep understand
5656
The simplest compression method, extremely efficient for consecutive repeated data.
5757
</div>
5858
<div class="feature-tags">
59-
<a href="./rle" class="feature-tag">Learn More</a>
59+
<a href="../algorithms/rle" class="feature-tag">Learn More</a>
6060
<span class="feature-tag">O(n) Time</span>
6161
</div>
6262
</div>

docs/zh/academy/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ description: 深入理解压缩算法的原理与实现
3434
将整个消息编码为 [0,1) 区间内的单个数值,逼近熵极限。
3535
</div>
3636
<div class="feature-tags">
37-
<a href="./arithmetic" class="feature-tag">深入学习</a>
37+
<a href="../algorithms/arithmetic" class="feature-tag">深入学习</a>
3838
<span class="feature-tag">L ≈ H + ε</span>
3939
</div>
4040
</div>
@@ -45,7 +45,7 @@ description: 深入理解压缩算法的原理与实现
4545
基于整数区间的算术编码变体,避免浮点精度问题。
4646
</div>
4747
<div class="feature-tags">
48-
<a href="./range" class="feature-tag">深入学习</a>
48+
<a href="../algorithms/range" class="feature-tag">深入学习</a>
4949
<span class="feature-tag">字节级 I/O</span>
5050
</div>
5151
</div>
@@ -56,7 +56,7 @@ description: 深入理解压缩算法的原理与实现
5656
最简单的压缩方法,对连续重复数据极其高效。
5757
</div>
5858
<div class="feature-tags">
59-
<a href="./rle" class="feature-tag">深入学习</a>
59+
<a href="../algorithms/rle" class="feature-tag">深入学习</a>
6060
<span class="feature-tag">O(n) 时间</span>
6161
</div>
6262
</div>

0 commit comments

Comments
 (0)