From d3097f44868737627555ebec622b029d7c0b1ab3 Mon Sep 17 00:00:00 2001 From: Zach Leatherman Date: Thu, 7 Nov 2024 18:36:09 -0600 Subject: [PATCH] Incorrect package name in readme --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a0f1344..559a6ea 100644 --- a/README.md +++ b/README.md @@ -16,10 +16,10 @@ npm install @11ty/posthtml-urls ```js const posthtml = require('posthtml'); -const urls = require('posthtml-urls'); +const urls = require('@11ty/posthtml-urls'); const options = { - eachURL: (url, attr, element) => `http://domain.com/${url}` + eachURL: (url, attr, tagName) => `http://domain.com/${url}` }; posthtml()