Spaces:
Running
Running
silvanocerza
commited on
Commit
•
6b3c370
1
Parent(s):
0673283
Better names for documentations
Browse files
main.py
CHANGED
@@ -24,16 +24,16 @@ load_dotenv()
|
|
24 |
|
25 |
# This is the list of documentation that we're going to fetch
|
26 |
DOCUMENTATIONS = [
|
27 |
-
("
|
28 |
-
("
|
29 |
-
("
|
30 |
-
("
|
31 |
(
|
32 |
-
"
|
33 |
-
"https://github.com/elastic/elasticsearch
|
34 |
"./docs/**/*.asciidoc",
|
35 |
),
|
36 |
-
("
|
37 |
]
|
38 |
|
39 |
|
|
|
24 |
|
25 |
# This is the list of documentation that we're going to fetch
|
26 |
DOCUMENTATIONS = [
|
27 |
+
("DocArray", "https://github.com/docarray/docarray", "./docs/**/*.md"),
|
28 |
+
("Streamlit", "https://github.com/streamlit/docs", "./content/**/*.md"),
|
29 |
+
("Jinja", "https://github.com/pallets/jinja", "./docs/**/*.rst"),
|
30 |
+
("Pandas", "https://github.com/pandas-dev/pandas", "./docs/source/**/*.rst"),
|
31 |
(
|
32 |
+
"Elasticsearch",
|
33 |
+
"https://github.com/elastic/elasticsearch",
|
34 |
"./docs/**/*.asciidoc",
|
35 |
),
|
36 |
+
("NumPy", "https://github.com/numpy/numpy", "./doc/**/*.rst"),
|
37 |
]
|
38 |
|
39 |
|