From e1342e7eb7a8680657ab046e4734f03120cb3ef3 Mon Sep 17 00:00:00 2001
From: 12-VidE <76615801+12-VidE@users.noreply.github.com>
Date: Thu, 2 Mar 2023 08:11:57 +0100
Subject: [PATCH] Add new attribute to tags (#84)
The new attribute makes it easier to apply custom styles to specific tags with CSS
---
.eleventy.js | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.eleventy.js b/.eleventy.js
index 45cdf68..f0b3da4 100644
--- a/.eleventy.js
+++ b/.eleventy.js
@@ -198,7 +198,7 @@ module.exports = function (eleventyConfig) {
return (
str &&
str.replace(tagRegex, function (match, precede, tag) {
- return `${precede}${tag}`;
+ return `${precede}${tag}`;
})
);
});