You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We document alot of API endpoints at Elastic for this you can use `console` as language. The term console relates to the dev console in kibana which users can link to directly from these code snippets.
99
+
100
+
:::{note}
101
+
We are still actively developing this special block and it's features
102
+
:::
103
+
104
+
````markdown
105
+
```console
106
+
GET /mydocuments/_search
107
+
{
108
+
"from": 1,
109
+
"query": {
110
+
"match_all" {}
111
+
}
112
+
}
113
+
```
114
+
````
115
+
116
+
Will render as:
117
+
118
+
```console
119
+
GET /mydocuments/_search
120
+
{
121
+
"from": 1,
122
+
"query": {
123
+
"match_all" {}
124
+
}
125
+
}
126
+
```
127
+
128
+
The first line is highlighted as a dev console string and the remainder as json.
0 commit comments