From b4b3a019e84ffcb7e57bb58edc6b9751d635eaba Mon Sep 17 00:00:00 2001 From: Lewis Dale Date: Fri, 9 Feb 2024 09:49:48 +0000 Subject: [PATCH] Make icons aria-hidden --- 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 44b1842..4a1e764 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) {