From 581b780776302a2afb7419051274977b41fac14e Mon Sep 17 00:00:00 2001 From: Antoine Lamirault Date: Wed, 15 May 2024 12:20:52 +0200 Subject: [PATCH] Fix README.md example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index fcc2563..d815c58 100644 --- a/README.md +++ b/README.md @@ -160,7 +160,7 @@ $converter->getConfig()->setOption('use_autolinks', true); $markdown = $converter->convert($html); // $markdown now contains "" $converter->getConfig()->setOption('use_autolinks', false); // default -$markdown = $converter->convert($html); // $markdown now contains "[https://google.com](https://google.com)" +$markdown = $converter->convert($html); // $markdown now contains "[https://thephpleague.com](https://thephpleague.com)" ``` ### Passing custom Environment object