From b8435c1a1be2c63002dd3ee7ae202f5e2d6ef9b5 Mon Sep 17 00:00:00 2001 From: Lewis Dale Date: Fri, 9 Feb 2024 09:52:42 +0000 Subject: [PATCH] Fix aria-hidden markup --- config/plugins/markdown.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/plugins/markdown.js b/config/plugins/markdown.js index 4a1e764..5995f26 100644 --- a/config/plugins/markdown.js +++ b/config/plugins/markdown.js @@ -67,7 +67,7 @@ const markdownLib = markdownIt({ }); markdownLib.renderer.rules.emoji = function(token, idx) { - return ``; + return ``; }; module.exports = function(eleventyConfig) {