You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The walkTokens function gets called with every token. Child tokens are called before moving on to sibling tokens. Each token is passed by reference so updates are persisted when passed to the parser. When [`async`](#async) mode is enabled, the return value is awaited. Otherwise the return value is ignored.
265
+
The walkTokens function gets called with every token. Child tokens are called before moving on to sibling tokens. Each token is passed by reference so updates are persisted when passed to the parser. When [`async`](#async) mode is enabled, the return value is awaited. Otherwise the return value is ignored.
266
266
267
267
`marked.use()` can be called multiple times with different `walkTokens` functions. Each function will be called in order, starting with the function that was assigned *last*.
Hooks are methods that hook into some part of marked. The following hooks are available:
299
+
300
+
| signature | description |
301
+
|-----------|-------------|
302
+
|`preprocess(markdown: string): string`| Process markdown before sending it to marked. |
303
+
|`postprocess(html: string): string`| Process html after marked has finished parsing. |
304
+
305
+
`marked.use()` can be called multiple times with different `hooks` functions. Each function will be called in order, starting with the function that was assigned *last*.
306
+
307
+
**Example:** Set options based on [front-matter](https://www.npmjs.com/package/front-matter)
308
+
309
+
```js
310
+
import { marked } from'marked';
311
+
importfmfrom'front-matter';
312
+
313
+
// Override function
314
+
consthooks= {
315
+
preprocess(markdown) {
316
+
const { attributes, body } =fm(markdown);
317
+
for (constpropin attributes) {
318
+
if (prop inthis.options) {
319
+
this.options[prop] = attributes[prop];
320
+
}
321
+
}
322
+
return body;
323
+
}
324
+
};
325
+
326
+
marked.use({ hooks });
327
+
328
+
// Run marked
329
+
console.log(marked.parse(`
330
+
---
331
+
headerIds: false
332
+
---
333
+
334
+
## test
335
+
`.trim()));
336
+
```
337
+
338
+
**Output:**
339
+
340
+
```html
341
+
<h2>test</h2>
342
+
```
343
+
344
+
**Example:** Sanitize HTML with [isomorphic-dompurify](https://www.npmjs.com/package/isomorphic-dompurify)
You may supply an `extensions` array to the `options` object. This array can contain any number of `extension` objects, using the following properties:
1 commit comments
vercel[bot] commentedon Mar 22, 2023
Successfully deployed to the following URLs:
marked-website – ./
marked-website-markedjs.vercel.app
markedjs.vercel.app
marked-website-git-master-markedjs.vercel.app
marked.js.org