diff --git a/README.md b/README.md index fd3a590..6121fde 100644 --- a/README.md +++ b/README.md @@ -159,6 +159,16 @@ var md = require('markdown-it')({ ``` +### Linkify + +`linkify: true` uses [linkify-it](https://github.com/markdown-it/linkify-it). To +configure linkify-it, access the linkify instance through `md.linkify`: + +```js +md.linkify.tlds('.py', false); // disables .py as top level domain +``` + + ## API __[API documentation](https://markdown-it.github.io/markdown-it/)__