Skip to content

Commit b58c5f7

Browse files
committed
update vale
1 parent 0281a58 commit b58c5f7

File tree

4 files changed

+14
-8
lines changed

4 files changed

+14
-8
lines changed

.vale.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ Microsoft.Ellipses = NO # Mostly just picks up code
2626
Microsoft.Dashes = NO
2727
Microsoft.Foreign = NO
2828
Microsoft.Plurals = NO
29+
Microsoft.Quotes = NO # Mostly just picks up code
2930

3031
# Not relevant for Fern audience
3132
Microsoft.GeneralURL = NO

.vale/styles/FernStyles/Acronyms.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,3 +84,7 @@ exceptions:
8484
- RBAC
8585
- SAML
8686
- OIDC
87+
- RGB
88+
- JPEG
89+
- RPG
90+
- MIME

.vale/styles/FernStyles/Headings.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,3 +114,4 @@ exceptions:
114114
- RBAC
115115
- YAML
116116
- fern.config.json
117+
- Font Awesome

fern/products/docs/pages/component-library/default-components/endpoint-schema-snippet.mdx

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ to specify the path to the schema you want to reference. The available selectors
1515

1616
<EndpointSchemaSnippet endpoint="POST /chat/{domain}" />
1717

18-
```jsx
18+
```jsx Markdown
1919
<EndpointSchemaSnippet endpoint="POST /chat/{domain}" />
2020

2121
```
@@ -28,31 +28,31 @@ Passing `request` as the selector will only render the request schema.
2828

2929
<EndpointSchemaSnippet endpoint="POST /chat/{domain}" selector="request" />
3030

31-
```jsx
31+
```jsx Markdown
3232
<EndpointSchemaSnippet endpoint="POST /chat/{domain}" selector="request" />
3333
```
3434

3535
### Request path
3636

3737
<EndpointSchemaSnippet endpoint="POST /chat/{domain}" selector="request.path" />
3838

39-
```jsx
39+
```jsx Markdown
4040
<EndpointSchemaSnippet endpoint="POST /chat/{domain}" selector="request.path" />
4141
```
4242

4343
### Request query
4444

4545
<EndpointSchemaSnippet endpoint="POST /discord/install" selector="request.query" />
4646

47-
```jsx
47+
```jsx Markdown
4848
<EndpointSchemaSnippet endpoint="POST /discord/install" selector="request.query" />
4949
```
5050

5151
### Request body
5252

5353
<EndpointSchemaSnippet endpoint="POST /chat/{domain}" selector="request.body" />
5454

55-
```jsx
55+
```jsx Markdown
5656
<EndpointSchemaSnippet endpoint="POST /chat/{domain}" selector="request.body" />
5757
```
5858

@@ -62,20 +62,20 @@ Passing `response` as the selector will only render the response schema.
6262

6363
<EndpointSchemaSnippet endpoint="POST /chat/{domain}" selector="response" />
6464

65-
```jsx
65+
```jsx Markdown
6666
<EndpointSchemaSnippet endpoint="POST /chat/{domain}" selector="response" />
6767
```
6868

6969
### Response body
7070

7171
<EndpointSchemaSnippet endpoint="POST /chat/{domain}" selector="response.body" />
7272

73-
```jsx
73+
```jsx Markdown
7474
<EndpointSchemaSnippet endpoint="POST /chat/{domain}" selector="response.body" />
7575
```
7676

7777
<Warning>
78-
The EndpointSchemaSnippet component does not yet support rendering markdown-rich field descriptions.
78+
The EndpointSchemaSnippet component doesn't yet support rendering markdown-rich field descriptions.
7979

8080
See [request.endpoint.path](/learn/docs/writing-content/components/schema-snippet#request.endpoint.path) above for an example of a markdown-rich description that does not yet render as markdown.
8181
</Warning>

0 commit comments

Comments
 (0)