Skip to content

Commit 5c1df1d

Browse files
committed
Remove dummy ButtonLink components, just use a f <a> html or a Card component
1 parent 2822b35 commit 5c1df1d

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

guides/langchain.mdx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,9 @@ if "OPENAI_API_KEY" not in os.environ:
7272

7373
Now that the project is ready, import some documents in Meilisearch. First, download this small movies dataset:
7474

75-
<ButtonLink as="a" id="downloadMoviesLite" href="https://gist.github.com/Strift/1524ab5e2015e50bbcb215fb4d950a38" download="movies-lite.json">movies-lite.json</ButtonLink>
75+
<Card horizontal title="movies-lite.json" icon="file" href="https://gist.githubusercontent.com/Strift/1524ab5e2015e50bbcb215fb4d950a38/raw/movies-lite.json?raw=true">
76+
Download movies-lite.json
77+
</Card>
7678

7779
Then, update the setup.py file to load the JSON and store it in Meilisearch. You will also use the OpenAI text search models to generate vector embeddings.
7880

learn/engine/storage.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Meilisearch will always demand a certain amount of space to use as a [memory map
5353

5454
## Measured disk usage
5555

56-
The following measurements were taken using <ButtonLink as="a" id="downloadMovie" href="/movies.json" download="movies.json">movies.json</ButtonLink> an 8.6 MB JSON dataset containing 19,553 documents.
56+
The following measurements were taken using <a href="/movies.json" download="movies.json">movies.json</a> an 8.6 MB JSON dataset containing 19,553 documents.
5757

5858
After indexing, the dataset size in LMDB is about 122MB.
5959

learn/getting_started/cloud_quick_start.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ The final step in creating an index is to add data to it. Choose "File upload":
7878
<img src="/assets/images/cloud-getting-started/8-file-upload.png" alt="Another modal window with three options. A red arrow points at the chosen option, 'File upload'" />
7979
</Frame>
8080

81-
Meilisearch Cloud will ask you for your dataset. To follow along with this tutorial, use this !BUTTONLINK! list of movies !BUTTONLINK!. Download the file to your computer, drag and drop it into the indicated area, then click on "Import documents":
81+
Meilisearch Cloud will ask you for your dataset. To follow along with this tutorial, use this <a href="/movies.json" download="movies.json">list of movies</a>. Download the file to your computer, drag and drop it into the indicated area, then click on "Import documents":
8282

8383
<Frame>
8484
<img src="/assets/images/cloud-getting-started/9-data-import.png" alt="Another modal window with a large drag-and-drop area. It indicates a file named 'movies.json' will be uploaded" />

learn/self_hosted/getting_started_with_self_hosted_meilisearch.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ To learn more about securing Meilisearch, refer to the [security tutorial](/lear
7171

7272
In this quick start, you will search through a collection of movies.
7373

74-
To follow along, first click this link to download the file: <ButtonLink as="a" id="downloadMovie" href="/movies.json" download="movies.json">movies.json</ButtonLink>. Then, move the downloaded file into your working directory.
74+
To follow along, first click this link to download the file: <a href="/movies.json" download="movies.json">movies.json</a>. Then, move the downloaded file into your working directory.
7575

7676
<Note>
7777
Meilisearch accepts data in JSON, NDJSON, and CSV formats.

0 commit comments

Comments
 (0)