Skip to content

CT-1077 Remove Shell markdown indication in introduction #143

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ info:
in the `X-Filter` header and are formatted as JSON objects. Here is a request
call for Linode Types in our "standard" class:

```Shell
```
curl "https://api.linode.com/v4/linode/types" \
-H 'X-Filter: { \
"class": "standard"
Expand All @@ -192,7 +192,7 @@ info:
including more than one key. For example, filtering for "standard" Linode
Types that offer one vcpu:

```Shell
```
curl "https://api.linode.com/v4/linode/types" \
-H 'X-Filter: { \
"class": "standard",
Expand All @@ -204,7 +204,7 @@ info:
However, if you wanted either Types with one vcpu or Types in our "standard"
class, you can add an operator:

```Shell
```
curl "https://api.linode.com/v4/linode/types" \
-H 'X-Filter: {
"+or": [
Expand Down Expand Up @@ -237,7 +237,7 @@ info:
For example, filtering for [Linode Types](/api/v4/linode-types)
that offer memory equal to or higher than 61440:

```Shell
```
curl "https://api.linode.com/v4/linode/types" \
-H 'X-Filter: {
"memory": {
Expand All @@ -251,7 +251,7 @@ info:
which are either `standard` or `highmem` class, or
have between 12 and 20 vcpus:

```Shell
```
curl "https://api.linode.com/v4/linode/types" \
-H 'X-Filter: {
"+or": [
Expand Down