From 20d7386714e1c837296ecc08c7aa05cbfb41f9d8 Mon Sep 17 00:00:00 2001 From: Helen Chong <119173961+helenclx@users.noreply.github.com> Date: Mon, 10 Jun 2024 17:30:48 +0800 Subject: [PATCH] Fix closing heading tag of manual heading anchor --- eleventy.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eleventy.config.js b/eleventy.config.js index 96bf974b..aecd1603 100644 --- a/eleventy.config.js +++ b/eleventy.config.js @@ -66,7 +66,7 @@ module.exports = function (eleventyConfig) { // Paired shortcode: Manual heading anchor eleventyConfig.addPairedShortcode('headingAnchor', (title, hLevel, id=slugify(title)) => { return `
- ${title} + ${title}
`; });