@@ -83,6 +83,7 @@ The code snippets above both sort the documents in the
8383largest value of the ``_id`` field:
8484
8585.. code-block:: json
86+ :copyable: false
8687
8788 {"_id": 1, "letter": "c", "food": "coffee with milk"}
8889 {"_id": 2, "letter": "a", "food": "donuts and coffee"}
@@ -167,6 +168,7 @@ by the ``_id`` field:
167168The output of the code example above should look something like this:
168169
169170.. code-block:: json
171+ :copyable: false
170172
171173 {"_id": 1, "letter": "c", "food": "coffee with milk"}
172174 {"_id": 2, "letter": "a", "food": "donuts and coffee"}
@@ -196,6 +198,7 @@ The code snippet above returns the documents in the
196198in descending order:
197199
198200.. code-block:: json
201+ :copyable: false
199202
200203 {"_id": 6, "letter": "c", "food": "maple donut"}
201204 {"_id": 5, "letter": "a", "food": "milk and cookies"}
@@ -226,6 +229,7 @@ field on which we perform the sort, the following documents could be returned
226229in any order:
227230
228231.. code-block:: json
232+ :copyable: false
229233
230234 {"_id": 3, "letter": "a", "food": "maple syrup"}
231235 {"_id": 5, "letter": "a", "food": "milk and cookies"}
@@ -251,6 +255,7 @@ The code snippet above returns the documents in the
251255in the following order:
252256
253257.. code-block:: json
258+ :copyable: false
254259
255260 {"_id": 2, "letter": "a", "food": "donuts and coffee"}
256261 {"_id": 3, "letter": "a", "food": "maple syrup"}
@@ -287,6 +292,7 @@ The code snippet above returns the documents in the
287292in the following order:
288293
289294.. code-block:: json
295+ :copyable: false
290296
291297 {"_id": 1, "letter": "c", "food": "coffee with milk"}
292298 {"_id": 6, "letter": "c", "food": "maple donut"}
@@ -358,6 +364,7 @@ The code example performs the following actions:
358364The output of the code example above should look something like this:
359365
360366.. code-block:: json
367+ :copyable: false
361368
362369 {"_id": 6, "letter": "c", "food": "maple donut", "score": 1.5}
363370 {"_id": 2, "letter": "a", "food": "donuts and coffee", "score": 0.75}
0 commit comments