Skip to content

Commit 6ce605f

Browse files
remove _md prefix
1 parent 527f47f commit 6ce605f

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.code-samples.meilisearch.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -473,7 +473,7 @@ add_movies_json_1: |-
473473
-X POST 'MEILISEARCH_URL/indexes/movies/documents'\
474474
-H 'Content-Type: application/json' \
475475
--data-binary @movies.json
476-
getting_started_add_documents_md: |-
476+
getting_started_add_documents: |-
477477
curl \
478478
-X POST 'MEILISEARCH_URL/indexes/movies/documents?primaryKey=id' \
479479
-H 'Content-Type: application/json' \
@@ -483,7 +483,7 @@ getting_started_check_task_status: |-
483483
curl \
484484
-X GET 'MEILISEARCH_URL/tasks/0' \
485485
-H 'Authorization: Bearer aSampleMasterKey'
486-
getting_started_search_md: |-
486+
getting_started_search: |-
487487
curl \
488488
-X POST 'MEILISEARCH_URL/indexes/movies/search' \
489489
-H 'Content-Type: application/json' \

learn/self_hosted/getting_started_with_self_hosted_meilisearch.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ sidebarTitle: Getting started with self-hosted Meilisearch
44
description: Learn how to install Meilisearch, index a dataset, and perform your first search.
55
---
66

7-
import CodeSamplesGettingStartedAddDocumentsMd from '/snippets/samples/code_samples_getting_started_add_documents_md.mdx';
7+
import CodeSamplesGettingStartedAddDocuments from '/snippets/samples/code_samples_getting_started_add_documents.mdx';
88
import CodeSamplesGettingStartedCheckTaskStatus from '/snippets/samples/code_samples_getting_started_check_task_status.mdx';
9-
import CodeSamplesGettingStartedSearchMd from '/snippets/samples/code_samples_getting_started_search_md.mdx';
9+
import CodeSamplesGettingStartedSearch from '/snippets/samples/code_samples_getting_started_search.mdx';
1010

1111
This quick start walks you through installing Meilisearch, adding documents, and performing your first search.
1212

@@ -81,7 +81,7 @@ Meilisearch accepts data in JSON, NDJSON, and CSV formats.
8181

8282
Open a new terminal window and run the following command:
8383

84-
<CodeSamplesGettingStartedAddDocumentsMd />
84+
<CodeSamplesGettingStartedAddDocuments />
8585

8686
Meilisearch stores data in the form of discrete records, called [documents](/learn/getting_started/documents). Each document is an object composed of multiple fields, which are pairs of one attribute and one value:
8787

@@ -148,7 +148,7 @@ If `status` is `enqueued` or `processing`, all you have to do is wait a short ti
148148

149149
Now that you have Meilisearch set up, you can start searching!
150150

151-
<CodeSamplesGettingStartedSearchMd />
151+
<CodeSamplesGettingStartedSearch />
152152

153153
<Note>
154154
This tutorial queries Meilisearch with the master key. In production environments, this is a security risk. Prefer using API keys to access Meilisearch's API in any public-facing application.

0 commit comments

Comments
 (0)