Skip to content

Commit f3cad78

Browse files
committed
docs(json-schema): uses <b> tags inside <summary> elements
1 parent f80cc1d commit f3cad78

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

packages/json-schema/README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ the check function in _stringified_ ("writeable") form.
129129
#### Example
130130

131131
<details>
132-
<summary>**Without** references:</summary>
132+
<summary><b>Without</b> references:</summary>
133133

134134
```typescript
135135
import { JsonSchema } from '@traversable/json-schema'
@@ -188,7 +188,7 @@ function check(value: any): value is User {
188188
</details>
189189

190190
<details>
191-
<summary>**With** references:</summary>
191+
<summary><b>With</b> references:</summary>
192192

193193
```typescript
194194
import { JsonSchema } from '@traversable/json-schema'
@@ -393,7 +393,7 @@ the clone function in _stringified_ ("writeable") form.
393393
#### Example
394394

395395
<details>
396-
<summary>**Without** references:</summary>
396+
<summary><b>Without</b> references:</summary>
397397

398398
```typescript
399399
import { JsonSchema } from '@traversable/json-schema'
@@ -448,7 +448,7 @@ function deepClone(prev: User): User {
448448
</details>
449449

450450
<details>
451-
<summary>**With** references:</summary>
451+
<summary><b>With</b> references:</summary>
452452

453453
```typescript
454454
import { JsonSchema } from '@traversable/json-schema'
@@ -590,7 +590,7 @@ the deep equal function in _stringified_ ("writeable") form.
590590
#### Example
591591

592592
<details>
593-
<summary>**Without** references:</summary>
593+
<summary><b>Without</b> references:</summary>
594594

595595
```typescript
596596
import { JsonSchema } from '@traversable/json-schema'
@@ -649,7 +649,7 @@ function deepEqual(l: User, r: User): boolean {
649649
</details>
650650

651651
<details>
652-
<summary>**With** references:</summary>
652+
<summary><b>With</b> references:</summary>
653653

654654
```typescript
655655
import { JsonSchema } from '@traversable/json-schema'
@@ -728,7 +728,7 @@ If the JSON Schema contains any references, the references will be compiled in a
728728
#### Example
729729

730730
<details>
731-
<summary>**Without** references:</summary>
731+
<summary><b>Without</b> references:</summary>
732732

733733
```typescript
734734
const UserType = JsonSchema.toType({
@@ -766,7 +766,7 @@ type User = {
766766
</details>
767767
768768
<details>
769-
<summary>**With** references:</summary>
769+
<summary><b>With</b> references:</summary>
770770
771771
```typescript
772772
import { JsonSchema, canonizeRefName } from '@traversable/json-schema'

0 commit comments

Comments
 (0)