@@ -35,8 +35,9 @@ from a [hast][github-hast] (HTML) syntax tree.
35
35
## When should I use this?
36
36
37
37
You can use this project when you want to turn hast into a DOM in browsers,
38
- either to use it directly on a page, or to enable the use of DOM APIs (such as
39
- ` querySelector ` to find things or ` innerHTML ` to serialize stuff).
38
+ either to use it directly on a page,
39
+ or to enable the use of DOM APIs
40
+ (such as ` querySelector ` to find things or ` innerHTML ` to serialize stuff).
40
41
41
42
The hast utility [ ` hast-util-from-dom ` ] [ github-hast-util-from-dom ] does the
42
43
inverse of this utility.
@@ -48,7 +49,8 @@ this utility to serialize as HTML with DOM APIs.
48
49
## Install
49
50
50
51
This package is [ ESM only] [ github-gist-esm ] .
51
- In Node.js (version 16+), install with [ npm] [ npmjs-install ] :
52
+ In Node.js (version 16+),
53
+ install with [ npm] [ npmjs-install ] :
52
54
53
55
``` sh
54
56
npm install hast-util-to-dom
@@ -89,8 +91,10 @@ Say our page `example.html` looks as follows:
89
91
</script >
90
92
```
91
93
92
- Now running ` open example.html ` shows the ` main ` , ` h1 ` , and ` p ` elements on the
93
- page.
94
+ Now running ` open example.html ` shows the
95
+ ` main ` ,
96
+ ` h1 ` ,
97
+ and ` p ` elements on the page.
94
98
95
99
## API
96
100
@@ -103,9 +107,11 @@ Turn a hast tree into a DOM tree.
103
107
104
108
###### Parameters
105
109
106
- * ` tree ` ([ ` HastNode ` ] [ github-hast-nodes ] )
110
+ * ` tree `
111
+ ([ ` HastNode ` ] [ github-hast-nodes ] )
107
112
— tree to transform
108
- * ` options ` ([ ` Options ` ] [ api-options ] , optional)
113
+ * ` options `
114
+ ([ ` Options ` ] [ api-options ] , optional)
109
115
— configuration
110
116
111
117
###### Returns
@@ -133,13 +139,17 @@ Configuration (TypeScript type).
133
139
134
140
###### Fields
135
141
136
- * ` afterTransform ` ([ ` AfterTransform ` ] [ api-after-transform ] , optional)
142
+ * ` afterTransform `
143
+ ([ ` AfterTransform ` ] [ api-after-transform ] , optional)
137
144
— callback called when each node is transformed
138
- * ` document ` (` Document ` , default: ` globalThis.document ` )
145
+ * ` document `
146
+ (` Document ` , default: ` globalThis.document ` )
139
147
— document interface to use.
140
- * ` fragment ` (` boolean ` , default: ` false ` )
148
+ * ` fragment `
149
+ (` boolean ` , default: ` false ` )
141
150
— whether to return a DOM fragment (` true ` ) or a whole document (` false ` )
142
- * ` namespace ` (` string ` , default: depends)
151
+ * ` namespace `
152
+ (` string ` , default: depends)
143
153
— namespace to use to create elements
144
154
145
155
## Syntax tree
@@ -157,9 +167,10 @@ It exports the additional types [`AfterTransform`][api-after-transform] and
157
167
Projects maintained by the unified collective are compatible with maintained
158
168
versions of Node.js.
159
169
160
- When we cut a new major release, we drop support for unmaintained versions of
161
- Node.
162
- This means we try to keep the current release line, ` hast-util-to-dom@^4 ` ,
170
+ When we cut a new major release,
171
+ we drop support for unmaintained versions of Node.
172
+ This means we try to keep the current release line,
173
+ ` hast-util-to-dom@4 ` ,
163
174
compatible with Node.js 16.
164
175
165
176
## Security
0 commit comments