Skip to content

Commit d8ae988

Browse files
committed
escape backtick quote
1 parent 5faea86 commit d8ae988

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

src/layouts/api-endpoint.hbs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,8 @@ To learn more, see [Authentication](https://docs.seam.co/latest/api/authenticati
3838
**`{{this.name}}`** {{#if this.jsonType}}*{{this.jsonType}}*{{/if}}{{#if this.itemFormat}} *of {{this.itemFormat}}s*{{/if}}{{#if this.required}} (Required){{/if}}
3939
{{#if this.description}}
4040

41-
````
41+
4242
{{this.description}}
43-
````
4443
{{/if}}
4544
{{#if this.itemEnumValues}}
4645
<details>

src/lib/reference.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ export const reference = (
105105
106106
To provide a consistent experience, Seam identifies the code on Seam by its name but may modify the name that appears on the lock provider's app or on the device. For example, Seam may add additional characters or truncate the name to meet provider constraints.
107107
108-
To help your users identify codes set by Seam, Seam provides the name exactly as it appears on the lock provider's app or on the device as a separate property called \`appearance\`. This is an object with a \`name\` property and, optionally, \`first_name\` and \`last_name\` properties (for providers that break down a name into components).`,
108+
To help your users identify codes set by Seam, Seam provides the name exactly as it appears on the lock provider's app or on the device as a separate property called \`appearance\`. This is an object with a \`name\` property and, optionally, \`first_name\` and \`last_name\` properties (for providers that break down a name into components).`.replace('\`', '&#96;'),
109109
}
110110
}
111111

0 commit comments

Comments
 (0)