From 76b29bc6c9fea27a6c5474c6cedc72062709a933 Mon Sep 17 00:00:00 2001 From: Colin O'Dell Date: Thu, 14 Mar 2019 21:42:13 -0400 Subject: [PATCH] Fix broken example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 970e052..9eca57f 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ $environment = Environment::createCommonMarkEnvironment(); $environment->addExtension(new AutolinkExtension()); // Instantiate the converter engine and start converting some Markdown! -$converter = new CommonMarkConverter($config, $environment); +$converter = new CommonMarkConverter([], $environment); echo $converter->convertToHtml('I successfully instead the https://github.com/thephpleague/commonmark-ext-autolink extension!'); ```