Skip to content

Commit 551eed8

Browse files
committed
add sitemap
Signed-off-by: Alex Chi <[email protected]>
1 parent e726fa4 commit 551eed8

File tree

4 files changed

+71
-1
lines changed

4 files changed

+71
-1
lines changed

sitemap.sh

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/bin/bash
2+
3+
cd tutorial
4+
mdbook build
5+
sscli -b https://skyzh.github.io/write-you-a-vector-db -r book -f xml -o > src/sitemap.xml
6+
sscli -b https://skyzh.github.io/write-you-a-vector-db -r book -f txt -o > src/sitemap.txt
7+
mdbook build

tutorial/src/sitemap.txt

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
https://skyzh.github.io/write-you-a-vector-db
2+
https://skyzh.github.io/write-you-a-vector-db/00-introduction
3+
https://skyzh.github.io/write-you-a-vector-db/10-epilogue
4+
https://skyzh.github.io/write-you-a-vector-db/cpp-01-overview
5+
https://skyzh.github.io/write-you-a-vector-db/cpp-02-setup
6+
https://skyzh.github.io/write-you-a-vector-db/cpp-03-knn
7+
https://skyzh.github.io/write-you-a-vector-db/cpp-04-optimizer
8+
https://skyzh.github.io/write-you-a-vector-db/cpp-05-ivfflat
9+
https://skyzh.github.io/write-you-a-vector-db/cpp-06-01-nsw
10+
https://skyzh.github.io/write-you-a-vector-db/cpp-06-02-hnsw
11+
https://skyzh.github.io/write-you-a-vector-db/cpp-07-large-dataset
12+
https://skyzh.github.io/write-you-a-vector-db/rust-01-overview

tutorial/src/sitemap.xml

+51
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
3+
<url>
4+
<loc>https://skyzh.github.io/write-you-a-vector-db</loc>
5+
<lastmod>2024-01-21T13:39:20.933Z</lastmod>
6+
</url>
7+
<url>
8+
<loc>https://skyzh.github.io/write-you-a-vector-db/00-introduction</loc>
9+
<lastmod>2024-01-21T13:39:20.932Z</lastmod>
10+
</url>
11+
<url>
12+
<loc>https://skyzh.github.io/write-you-a-vector-db/10-epilogue</loc>
13+
<lastmod>2024-01-21T13:39:20.942Z</lastmod>
14+
</url>
15+
<url>
16+
<loc>https://skyzh.github.io/write-you-a-vector-db/cpp-01-overview</loc>
17+
<lastmod>2024-01-21T13:39:20.943Z</lastmod>
18+
</url>
19+
<url>
20+
<loc>https://skyzh.github.io/write-you-a-vector-db/cpp-02-setup</loc>
21+
<lastmod>2024-01-21T13:39:20.936Z</lastmod>
22+
</url>
23+
<url>
24+
<loc>https://skyzh.github.io/write-you-a-vector-db/cpp-03-knn</loc>
25+
<lastmod>2024-01-21T13:39:20.937Z</lastmod>
26+
</url>
27+
<url>
28+
<loc>https://skyzh.github.io/write-you-a-vector-db/cpp-04-optimizer</loc>
29+
<lastmod>2024-01-21T13:39:20.938Z</lastmod>
30+
</url>
31+
<url>
32+
<loc>https://skyzh.github.io/write-you-a-vector-db/cpp-05-ivfflat</loc>
33+
<lastmod>2024-01-21T13:39:20.939Z</lastmod>
34+
</url>
35+
<url>
36+
<loc>https://skyzh.github.io/write-you-a-vector-db/cpp-06-01-nsw</loc>
37+
<lastmod>2024-01-21T13:39:20.940Z</lastmod>
38+
</url>
39+
<url>
40+
<loc>https://skyzh.github.io/write-you-a-vector-db/cpp-06-02-hnsw</loc>
41+
<lastmod>2024-01-21T13:39:20.941Z</lastmod>
42+
</url>
43+
<url>
44+
<loc>https://skyzh.github.io/write-you-a-vector-db/cpp-07-large-dataset</loc>
45+
<lastmod>2024-01-21T13:39:20.943Z</lastmod>
46+
</url>
47+
<url>
48+
<loc>https://skyzh.github.io/write-you-a-vector-db/rust-01-overview</loc>
49+
<lastmod>2024-01-21T13:39:20.944Z</lastmod>
50+
</url>
51+
</urlset>

0 commit comments

Comments
 (0)