Skip to content

Commit b7d7d3d

Browse files
update custom components
1 parent 8b60652 commit b7d7d3d

File tree

2 files changed

+15
-9
lines changed

2 files changed

+15
-9
lines changed

reference/api/documents.mdx

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,11 @@ Sending an empty payload (`--data-binary '{}'`) will return all documents in the
6363
| **`limit`** | Integer | Number of documents returned |
6464
| **`total`** | Integer | Total number of documents in the index |
6565

66-
<Capsule intent="note" title="Returned document order">
66+
<Note >
67+
#### Returned document order
68+
6769
`/indexes/{index_uid}/documents/fetch` and `/indexes/{index_uid}/documents` responses do not return documents following the order of their primary keys.
68-
</Capsule>
70+
</Note>
6971

7072
### Example
7173

@@ -146,9 +148,11 @@ Using the query parameters `offset` and `limit`, you can browse through all your
146148
| **`limit`** | Integer | Number of documents returned |
147149
| **`total`** | Integer | Total number of documents in the index |
148150

149-
<Capsule intent="note" title="Returned document order">
151+
<Note >
152+
#### Returned document order
153+
150154
`/indexes/{index_uid}/documents/fetch` and `/indexes/{index_uid}/documents` responses do not return documents following the order of their primary keys.
151-
</Capsule>
155+
</Note>
152156

153157
### Example
154158

reference/api/settings.mdx

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ sidebarDepth: 3
66
---
77

88
import { RouteHighlighter } from '/snippets/route_highlighter.mdx'
9-
9+
import { NoticeTag } from '/snippets/notice_tag.mdx'
1010

1111
import CodeSamplesGetDictionary1 from '/snippets/samples/code_samples_get_dictionary_1.mdx';
1212
import CodeSamplesGetDisplayedAttributes1 from '/snippets/samples/code_samples_get_displayed_attributes_1.mdx';
@@ -780,11 +780,13 @@ Attribute patterns may begin or end with a * wildcard to match multiple fields:
780780

781781
Calculating `comparison` filters is a resource-intensive operation. Disabling them may lead to better search and indexing performance. `equality` filters use fewer resources and have limited impact on performance.
782782

783-
<Capsule intent="warning" title="Filterable attributes and reserved attributes">
783+
<Warning>
784+
#### Filterable attributes and reserved attributes
785+
784786
Use the simple string syntax to match reserved attributes. Reserved Meilisearch fields are always prefixed with an underscore (`_`), such as `_geo` and `_vector`.
785787

786788
If set as a filterable attribute, reserved attributes ignore the `features` field and automatically activate all search features. Reserved fields will not be matched by wildcard `attributePatterns` such as `_*`.
787-
</Capsule>
789+
</Warning>
788790

789791
### Get filterable attributes
790792

@@ -2599,7 +2601,7 @@ This field is mandatory.
25992601

26002602
Choose `composite` to use one embedder during indexing time, and another embedder at search time. Must be used together with [`indexingEmbedder` and `searchEmbedder`](#indexingembedder-and-searchembedder).
26012603

2602-
<Capsule intent="note" title="Activating composite embedders">
2604+
<Note>
26032605
This is an experimental feature. Use the experimental features endpoint to activate it:
26042606

26052607
```sh
@@ -2610,7 +2612,7 @@ curl \
26102612
"compositeEmbedders": true
26112613
}'
26122614
```
2613-
</Capsule>
2615+
</Note>
26142616

26152617
##### `url`
26162618

0 commit comments

Comments
 (0)