Skip to content

Commit 9309fe4

Browse files
committed
Fix depth
1 parent e198eed commit 9309fe4

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

readme.md

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,10 @@ The latest released version is [`2.4.0`][latest].
2929
* [`Element`](#element)
3030
* [`Root`](#root)
3131
* [`Text`](#text)
32-
* [Types](#types-1)
32+
* [Other types](#other-types)
33+
* [`Properties`](#properties)
34+
* [`PropertyName`](#propertyname)
35+
* [`PropertyValue`](#propertyvalue)
3336
* [Glossary](#glossary)
3437
* [List of utilities](#list-of-utilities)
3538
* [Related HTML utilities](#related-html-utilities)
@@ -74,7 +77,7 @@ The reason for introducing a new “virtual” DOM is primarily:
7477

7578
## Types
7679

77-
If you are using TypeScript, you can use the unist types by installing them
80+
If you are using TypeScript, you can use the hast types by installing them
7881
with npm:
7982

8083
```sh
@@ -250,9 +253,9 @@ Yields:
250253
}
251254
```
252255

253-
### Types
256+
## Other types
254257

255-
#### `Properties`
258+
### `Properties`
256259

257260
```idl
258261
interface Properties {}
@@ -263,7 +266,7 @@ interface Properties {}
263266
Every field must be a **[PropertyName][dfn-property-name]** and every value a
264267
**[PropertyValue][dfn-property-value]**.
265268

266-
#### `PropertyName`
269+
### `PropertyName`
267270

268271
```idl
269272
typedef string PropertyName
@@ -341,7 +344,7 @@ following attributes:
341344

342345
</details>
343346

344-
#### `PropertyValue`
347+
### `PropertyValue`
345348

346349
```idl
347350
typedef any PropertyValue

0 commit comments

Comments
 (0)