Skip to content

Add proper language support for syntax highlighting to all code blocks #807

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

Merged
merged 2 commits into from
Jun 11, 2025
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion api-playground/customization/adding-sdk-examples.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: "Adding SDK examples"
description: "Display language-specific code samples alongside your API endpoints to show developers how to use your SDKs"

Check warning on line 3 in api-playground/customization/adding-sdk-examples.mdx

View check run for this annotation

Mintlify / Mintlify Validation - vale-spellcheck

api-playground/customization/adding-sdk-examples.mdx#L3

Did you really mean 'SDKs'?
---

If your users interact with your API using an SDK rather than directly through a network request, you can use the `x-codeSamples` extension to add code samples to your OpenAPI document and display them in your OpenAPI pages.
Expand All @@ -25,7 +25,7 @@
paths:
/plants:
get:
...
# ...
x-codeSamples:
- lang: bash
label: List all unwatered plants
Expand Down
6 changes: 3 additions & 3 deletions api-playground/customization/complex-data-types.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
users:
type: array
description: An array containing all users in the organization
...
# ...
components:
schemas:
Org:
Expand All @@ -56,7 +56,7 @@

### Providing options with `oneOf` and `anyOf`

When you use `oneOf` or `anyOf`, the options are displayed in a tabbed container. Specify a `title` field in each subschema to give your options names. For example, here's how you might display two different types of delivery addresses:

Check warning on line 59 in api-playground/customization/complex-data-types.mdx

View check run for this annotation

Mintlify / Mintlify Validation - vale-spellcheck

api-playground/customization/complex-data-types.mdx#L59

Did you really mean 'subschema'?

```yaml
delivery_address:
Expand All @@ -67,14 +67,14 @@
address_line_1:
type: string
description: The street address of the recipient
...
# ...
- title: POBox
type: object
properties:
box_number:
type: string
description: The number of the PO Box
...
# ...
```

<ParamField body="delivery_address" type="object">
Expand Down
12 changes: 6 additions & 6 deletions api-playground/customization/managing-page-visibility.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

You can control which OpenAPI operations get published as documentation pages and their visibility in navigation. This is useful for internal-only endpoints, deprecated operations, beta features, or endpoints that should be accessible via direct URL but not discoverable through site navigation.

If your pages are autogenerated from an OpenAPI document, you can manage page visibility with the `x-hidden` and `x-excluded` extensions.

Check warning on line 8 in api-playground/customization/managing-page-visibility.mdx

View check run for this annotation

Mintlify / Mintlify Validation - vale-spellcheck

api-playground/customization/managing-page-visibility.mdx#L8

Did you really mean 'autogenerated'?

## `x-hidden`

Expand Down Expand Up @@ -39,24 +39,24 @@
"/plants": {
"get": {
"description": "Returns all plants from the store",
"parameters": { ... },
"responses": { ... }
"parameters": { /*...*/ },
"responses": { /*...*/ }
}
},
"/hidden_plants": {
"get": {
"x-hidden": true,
"description": "Returns all somewhat secret plants from the store",
"parameters": { ... },
"responses": { ... }
"parameters": { /*...*/ },
"responses": { /*...*/ }
}
},
"/secret_plants": {
"get": {
"x-excluded": true,
"description": "Returns all top secret plants from the store (do not publish this endpoint!)",
"parameters": { ... },
"responses": { ... }
"parameters": { /*...*/ },
"responses": { /*...*/ }
}
}
},
Expand Down
2 changes: 1 addition & 1 deletion api-playground/customization/multiple-responses.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ responses:
countryCode: "GB"
currencyCode: "GBP"
taxRate: 0.20
```
```
8 changes: 4 additions & 4 deletions api-playground/mdx/authentication.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
}
```

```md Page Metadata
```mdx Page Metadata
---
title: "Your page title"
authMethod: "bearer"
Expand All @@ -46,7 +46,7 @@
}
```

```md Page Metadata
```mdx Page Metadata
---
title: "Your page title"
authMethod: "basic"
Expand All @@ -70,7 +70,7 @@
}
```

```md Page Metadata
```mdx Page Metadata
---
title: "Your page title"
authMethod: "key"
Expand All @@ -84,10 +84,10 @@
The "none" authentication method is useful to disable authentication on a specific endpoint after setting a default in docs.json.

<CodeGroup>
```md Page Metadata
```mdx Page Metadata
---
title: "Your page title"
authMethod: "none"

Check warning on line 90 in api-playground/mdx/authentication.mdx

View check run for this annotation

Mintlify / Mintlify Validation - vale-spellcheck

api-playground/mdx/authentication.mdx#L90

Did you really mean 'authMethod'?
---
```
</CodeGroup>
13 changes: 7 additions & 6 deletions api-playground/mdx/configuration.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@

Each API endpoint page should have a corresponding `MDX` file. At the top of each file, define `title` and `api`:

```md
```mdx
---
title: 'Create new user'
api: 'POST https://api.mintlify.com/user'
Expand All @@ -61,11 +61,12 @@

You can override the globally-defined display mode for the API playground per page by adding `playground` at the top of the `MDX` file:

```md
```mdx
---
title: 'Create new user'
api: 'POST https://api.mintlify.com/user'
playground: 'none'
---
```

</Step>
Expand Down Expand Up @@ -95,7 +96,7 @@
}
```

```md Page Metadata
```mdx Page Metadata
---
title: "Your page title"
authMethod: "bearer"
Expand All @@ -118,7 +119,7 @@
}
```

```md Page Metadata
```mdx Page Metadata
---
title: "Your page title"
authMethod: "basic"
Expand All @@ -142,7 +143,7 @@
}
```

```md Page Metadata
```mdx Page Metadata
---
title: "Your page title"
authMethod: "key"
Expand All @@ -156,10 +157,10 @@
The `none` authentication method is useful to disable authentication on a specific endpoint after setting a default in docs.json.

<CodeGroup>
```md Page Metadata
```mdx Page Metadata
---
title: "Your page title"
authMethod: "none"

Check warning on line 163 in api-playground/mdx/configuration.mdx

View check run for this annotation

Mintlify / Mintlify Validation - vale-spellcheck

api-playground/mdx/configuration.mdx#L163

Did you really mean 'authMethod'?
---
```
</CodeGroup>
8 changes: 4 additions & 4 deletions api-playground/openapi-setup.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

### Specifying the URL for your API

To enable Mintlify features like the API playground, add a `servers` field to your OpenAPI document with your API's base URL.

Check warning on line 28 in api-playground/openapi-setup.mdx

View check run for this annotation

Mintlify / Mintlify Validation - vale-spellcheck

api-playground/openapi-setup.mdx#L28

Did you really mean 'API's'?

```json
{
Expand Down Expand Up @@ -162,7 +162,7 @@

<CodeGroup>

```md Example
```mdx Example
---
title: "Get users"
description: "Returns all plants from the system that the user has access to"
Expand All @@ -172,7 +172,7 @@
---
```

```md Format
```mdx Format
---
title: "title of the page"
description: "description of the page"
Expand All @@ -192,10 +192,10 @@

### Autogenerate `MDX` files

Use our Mintlify [scraper](https://www.npmjs.com/package/@mintlify/scraping) to autogenerate `MDX` pages for large OpenAPI documents.

Check warning on line 195 in api-playground/openapi-setup.mdx

View check run for this annotation

Mintlify / Mintlify Validation - vale-spellcheck

api-playground/openapi-setup.mdx#L195

Did you really mean 'autogenerate'?

<Note>
Your OpenAPI document must be valid or the files will not autogenerate.

Check warning on line 198 in api-playground/openapi-setup.mdx

View check run for this annotation

Mintlify / Mintlify Validation - vale-spellcheck

api-playground/openapi-setup.mdx#L198

Did you really mean 'autogenerate'?
</Note>

The scraper generates:
Expand All @@ -207,12 +207,12 @@
<Steps>
<Step title="Generate `MDX` files.">
```bash
npx @mintlify/scraping@latest openapi-file <path-to-openapi-file>

Check warning on line 210 in api-playground/openapi-setup.mdx

View check run for this annotation

Mintlify / Mintlify Validation - vale-spellcheck

api-playground/openapi-setup.mdx#L210

Did you really mean 'npx'?
```
</Step>
<Step title="Specify an output folder.">
```bash
npx @mintlify/scraping@latest openapi-file <path-to-openapi-file> -o api-reference

Check warning on line 215 in api-playground/openapi-setup.mdx

View check run for this annotation

Mintlify / Mintlify Validation - vale-spellcheck

api-playground/openapi-setup.mdx#L215

Did you really mean 'npx'?
```

Add the `-o` flag to specify a folder to populate the files into. If a folder is not specified, the files will populate in the working directory.
Expand All @@ -225,14 +225,14 @@

<CodeGroup>

```md Example
```mdx Example
---
openapi-schema: OrderItem
---
```


```md Format
```mdx Format
---
openapi-schema: "schema-key"
---
Expand Down
2 changes: 1 addition & 1 deletion api-playground/overview.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
Make sure that your OpenAPI specification file is valid using the [Swagger Editor](https://editor.swagger.io/) or [Mint CLI](https://www.npmjs.com/package/mint).
</Info>

``` {2}
```bash {2}
/your-project
|- docs.json
|- openapi.json
Expand Down Expand Up @@ -73,10 +73,10 @@
</ResponseField>

<ResponseField name="examples" type="object">
Configurations for the autogenerated API examples.

Check warning on line 76 in api-playground/overview.mdx

View check run for this annotation

Mintlify / Mintlify Validation - vale-spellcheck

api-playground/overview.mdx#L76

Did you really mean 'autogenerated'?
<Expandable title="examples" defaultOpen="True">
<ResponseField name="languages" type="array of string">
Example languages for the autogenerated API snippets.

Check warning on line 79 in api-playground/overview.mdx

View check run for this annotation

Mintlify / Mintlify Validation - vale-spellcheck

api-playground/overview.mdx#L79

Did you really mean 'autogenerated'?

Languages display in the order specified.
</ResponseField>
Expand All @@ -90,7 +90,7 @@

```json
{
"api": {

Check warning on line 93 in api-playground/overview.mdx

View check run for this annotation

Mintlify / Mintlify Validation - vale-spellcheck

api-playground/overview.mdx#L93

Did you really mean 'api'?
"playground": {
"display": "interactive"
},
Expand Down
6 changes: 3 additions & 3 deletions api-playground/troubleshooting.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ If your API pages aren't displaying correctly, check these common configuration

Here's an example of how things might go wrong:

```md get-user.mdx
```mdx get-user.mdx
---
openapi: "GET /users/{id}/"
---
Expand All @@ -56,7 +56,7 @@ If your API pages aren't displaying correctly, check these common configuration
in the `openapi` field, ensure the filename is correct. For example, if you have two OpenAPI
documents `openapi/v1.json` and `openapi/v2.json`, your metadata might look like this:

```md api-reference/v1/users/get-user.mdx
```mdx api-reference/v1/users/get-user.mdx
---
openapi: "v1 GET /users/{id}"
---
Expand All @@ -73,4 +73,4 @@ If your API pages aren't displaying correctly, check these common configuration
likely require you to configure CORS on your server, as these requests will now come directly
from your users' browsers.
</Accordion>
</AccordionGroup>
</AccordionGroup>
2 changes: 1 addition & 1 deletion authentication-personalization/overview.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -115,17 +115,17 @@
fields. For example, `{user.org?.plan}`.
</Note>

### API key prefilling

Check warning on line 118 in authentication-personalization/overview.mdx

View check run for this annotation

Mintlify / Mintlify Validation - vale-spellcheck

authentication-personalization/overview.mdx#L118

Did you really mean 'prefilling'?

Automatically populate API playground fields with user-specific values by returning matching field names in your user data. The field names in your user data must exactly match the names in the API playground for automatic prefilling to work.

Check warning on line 120 in authentication-personalization/overview.mdx

View check run for this annotation

Mintlify / Mintlify Validation - vale-spellcheck

authentication-personalization/overview.mdx#L120

Did you really mean 'prefilling'?

### Page visibility

Restrict which pages are visible to your users by adding `groups` fields to your pages' frontmatter. By default, every page is visible to every user.

Check warning on line 124 in authentication-personalization/overview.mdx

View check run for this annotation

Mintlify / Mintlify Validation - vale-spellcheck

authentication-personalization/overview.mdx#L124

Did you really mean 'frontmatter'?

Users will only see pages for `groups` that they are in.

```md
```mdx
---
title: "Managing your users"
description: "Adding and removing users from your organization"
Expand Down
8 changes: 4 additions & 4 deletions changelog.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
- Improved styling nits for dashboard border for mobile-tablet-desktop responsiveness
- Show code examples even when in simple mode for API playground
- Support "command \+ k" shortcut for search in web editor
- Codeblocks within callouts expand to fill the width of the callout area

Check warning on line 86 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation - vale-spellcheck

changelog.mdx#L86

Did you really mean 'Codeblocks'?

Check warning on line 86 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation - vale-spellcheck

changelog.mdx#L86

Did you really mean 'callouts'?

Check warning on line 86 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation - vale-spellcheck

changelog.mdx#L86

Did you really mean 'callout'?
</Update>

<Update label="February 2025">
Expand All @@ -98,13 +98,13 @@

1. Make sure your CLI is the latest version

```
```bash
npm i mint@latest -g
```

1. In your docs repository, run

```
```bash
mint upgrade
```

Expand All @@ -114,9 +114,9 @@

Automatically lint your docs to find broken links, discover spelling and grammar issues, or enforce writing styles with your own Vale config. Learn more in our [docs](settings/ci).

## .md support for LLMs

Check warning on line 117 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation - vale-spellcheck

changelog.mdx#L117

Did you really mean 'LLMs'?

All documentation pages are now automatically available as plain Markdown files—just append `.md` to the URL. This makes it easier for LLMs to ingest individual pages from your documentation.

Check warning on line 119 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation - vale-spellcheck

changelog.mdx#L119

Did you really mean 'LLMs'?

## More Themes

Expand Down Expand Up @@ -198,7 +198,7 @@
<Frame>
![llms.txt support](/images/changelog/llms.jpg)
</Frame>
All docs instances are now automatically hosted at /llms.txt and /llms-full.txt so that LLMs can easily ingest your documentation. For more information, read the [docs on the new llms.txt standard.](https://llmstxt.org)

Check warning on line 201 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation - vale-spellcheck

changelog.mdx#L201

Did you really mean 'LLMs'?

## Localization

Expand Down Expand Up @@ -230,7 +230,7 @@
sayHello();
```

````md
````mdx
```javascript Line Highlighting Example {1,3-5}
const greeting = "Hello, World!";
function sayHello() {
Expand Down Expand Up @@ -270,7 +270,7 @@
## Dashboard Improvements

- Added ability to change custom domain to be /docs directly through dashboard settings.
- Consolidated the login and signup pages to decrease friction and confusion.

Check warning on line 273 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation - vale-spellcheck

changelog.mdx#L273

Did you really mean 'signup'?
- Implemented the discovery login flow so that users that are members of multiple organizations can now switch between them.
- Added login with Google OAuth
- Added ability to add new deployment through dashboard settings.
Expand All @@ -284,7 +284,7 @@
- Don't allow search engines to crawl user-auth protected pages.
- Revalidate the cache when an org is deleted.
- We now use the Scalar OpenAPI parser to parse OpenAPI definitions which improves the performance, fixes parsing issues, and surfaces better error messages.
- Top-level descriptions are now supported in API reference pages autogenerated from OpenAPI definitions.

Check warning on line 287 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation - vale-spellcheck

changelog.mdx#L287

Did you really mean 'autogenerated'?
- Add in-line-style support for icons
- Fixed the pop-in of custom CSS in docs.
- Properly show in-line code styling in conjunction with links.
Expand Down Expand Up @@ -317,7 +317,7 @@
<Frame>
![SEO Improvements](/images/changelog/seo-improvements.jpeg)
</Frame>
We've fixed both the mobile and desktop layout of our docs so that they are more SEO-friendly - including adding proper aria tags to navbar and toggle elements.

Check warning on line 320 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation - vale-spellcheck

changelog.mdx#L320

Did you really mean 'navbar'?

## Dashboard Improvements

Expand Down Expand Up @@ -351,7 +351,7 @@

## File Uploads in API Playground

By default, API playground requests are proxied by Mintlify. Now you can use

Check warning on line 354 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation - vale-spellcheck

changelog.mdx#L354

Did you really mean 'proxied'?
`disableProxy` to disable this behavior and support request types like file
uploads.

Expand Down Expand Up @@ -384,7 +384,7 @@
</Frame>
For `Pro` users, we introduced Mintlify Widget, an extension of your docs to
answer your users' questions when and where they asked. You can add this
AI-powered chatbot to any web page: your landing page, inside your product, or

Check warning on line 387 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation - vale-spellcheck

changelog.mdx#L387

Did you really mean 'chatbot'?
on your existing documentation pages.

- [Read the blog announcement](https://mintlify.com/blog/widget)
Expand Down Expand Up @@ -419,7 +419,7 @@
<Update label="May 2024">
## Okta SSO

We now support sign-on via Okta SAML and OIDC.

Check warning on line 422 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation - vale-spellcheck

changelog.mdx#L422

Did you really mean 'Okta'?

## Mintlify REST API

Expand All @@ -442,7 +442,7 @@
<Update label="March 2024">
## Mintlify MDX for VSCode

Call snippets of our pre-built components and callouts without leaving VSCode. [Install the extension here](https://marketplace.visualstudio.com/items?itemName=mintlify.mintlify-snippets).

Check warning on line 445 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation - vale-spellcheck

changelog.mdx#L445

Did you really mean 'callouts'?
</Update>

<Update label="February 2024">
Expand All @@ -451,7 +451,7 @@
- Dashboard upgrades: view update logs to see what's changed and status of an update, toggle between Mintlify projects to manage deployments
- Versioning with tabs fully supported
- Wildcard redirects now supported
- CLI Error Detection: we now show the position of invalid frontmatter when there are parsing issues during local development

Check warning on line 454 in changelog.mdx

View check run for this annotation

Mintlify / Mintlify Validation - vale-spellcheck

changelog.mdx#L454

Did you really mean 'frontmatter'?
</Update>

<Update label="January 2024">
Expand All @@ -461,4 +461,4 @@
- Snippets V2: We now support fully reusable components and variables for snippets.
- Open-source MDX Engine: We've exposed two APIs—getCompiledMdx and MDXComponent—so you can access Mintlify markdown and code syntax highlighting. [Contributions to the project](https://github.com/mintlify/mdx) are welcome.
- AI Chat Insights: Segment chat history by date and increase AI Chat quota from the dashboard, and see how often a specific query appears.
</Update>
</Update>
12 changes: 6 additions & 6 deletions code.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ icon: "code"

To denote a `word` or `phrase` as code, enclose it in backticks (\`).

```
```mdx
To denote a `word` or `phrase` as code, enclose it in backticks (`).
```

Expand All @@ -26,7 +26,7 @@ class HelloWorld {
}
```

````md
````mdx
```java HelloWorld.java
class HelloWorld {
public static void main(String[] args) {
Expand All @@ -48,7 +48,7 @@ class HelloWorld {
}
```

````md
````mdx
```java
class HelloWorld {
public static void main(String[] args) {
Expand Down Expand Up @@ -165,7 +165,7 @@ Add a title after the programming language to set the name of your code example.
const hello = "world";
```

````md Code Block Example
````mdx Code Block Example
```javascript Code Block Example
const hello = "world";
```
Expand All @@ -183,7 +183,7 @@ function sayHello() {
sayHello();
```

````md
````mdx
```javascript Line Highlighting Example {1,3-5}
const greeting = "Hello, World!";
function sayHello() {
Expand Down Expand Up @@ -287,7 +287,7 @@ if __name__ == "__main__":
main()
```

````md
````mdx
```javascript Expandable Example [expandable]
const greeting = "Hello, World!";
function sayHello() {
Expand Down
4 changes: 2 additions & 2 deletions components/accordions.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

<RequestExample>

````jsx Accordion Example
````mdx Accordion Example
<Accordion title="I am an Accordion.">
You can put any content in here, including other components, like code:

Expand All @@ -31,7 +31,7 @@
</Accordion>
````

````jsx Accordion Group Example
````mdx Accordion Group Example
<AccordionGroup>
<Accordion title="FAQ without Icon">
You can put other components inside Accordions.
Expand Down Expand Up @@ -74,7 +74,7 @@
</ResponseField>

<ResponseField name="icon" type="string or svg">
A [Font Awesome icon](https://fontawesome.com/icons), [Lucide

Check warning on line 77 in components/accordions.mdx

View check run for this annotation

Mintlify / Mintlify Validation - vale-spellcheck

components/accordions.mdx#L77

Did you really mean 'Lucide'?
icon](https://lucide.dev/icons), or SVG code
</ResponseField>

Expand Down
14 changes: 7 additions & 7 deletions components/callouts.mdx
Original file line number Diff line number Diff line change
@@ -1,38 +1,38 @@
---
title: 'Callouts'

Check warning on line 2 in components/callouts.mdx

View check run for this annotation

Mintlify / Mintlify Validation - vale-spellcheck

components/callouts.mdx#L2

Did you really mean 'Callouts'?
description: 'Use callouts to add eye-catching context to your content'

Check warning on line 3 in components/callouts.mdx

View check run for this annotation

Mintlify / Mintlify Validation - vale-spellcheck

components/callouts.mdx#L3

Did you really mean 'callouts'?
icon: 'info'
---

Callouts can be styled as a Note, Warning, Info, Tip, or Check:

Check warning on line 7 in components/callouts.mdx

View check run for this annotation

Mintlify / Mintlify Validation - vale-spellcheck

components/callouts.mdx#L7

Did you really mean 'Callouts'?

<Note>This adds a note in the content</Note>

```jsx
```mdx
<Note>This adds a note in the content</Note>
```

<Warning>This raises a warning to watch out for</Warning>

```jsx
```mdx
<Warning>This raises a warning to watch out for</Warning>
```

<Info>This draws attention to important information</Info>

```jsx
```mdx
<Info>This draws attention to important information</Info>
```

<Tip>This suggests a helpful tip</Tip>

```jsx
```mdx
<Tip>This suggests a helpful tip</Tip>
```

<Check>This brings us a checked status</Check>

```jsx
```mdx
<Check>This brings us a checked status</Check>
```

Expand All @@ -44,8 +44,8 @@

<RequestExample>

```jsx Callout Example
```mdx Callout Example
<Note>This adds a note in the content</Note>
```

</RequestExample>
</RequestExample>
Loading