From 8718c5091a232227390246f3165234b6e289a95c Mon Sep 17 00:00:00 2001 From: Masataka Pocke Kuwabara Date: Tue, 20 Oct 2020 15:14:56 +0900 Subject: [PATCH] Fix linkify example code in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e29981a..66bbd57 100644 --- a/README.md +++ b/README.md @@ -187,7 +187,7 @@ var md = require('markdown-it')({ configure linkify-it, access the linkify instance through `md.linkify`: ```js -md.linkify.tlds('.py', false); // disables .py as top level domain +md.linkify.set({ fuzzyEmail: false }); // disables converting email to link ```