From 41d33019e503f2dae9a8dc4c037f4d5a730de32c Mon Sep 17 00:00:00 2001 From: Helen Chong <119173961+helenclx@users.noreply.github.com> Date: Fri, 31 May 2024 12:47:16 +0800 Subject: [PATCH] Set markdown-it linkify feature to true --- eleventy.config.md.js | 1 + 1 file changed, 1 insertion(+) diff --git a/eleventy.config.md.js b/eleventy.config.md.js index 3ea718cf..46243c87 100644 --- a/eleventy.config.md.js +++ b/eleventy.config.md.js @@ -66,6 +66,7 @@ module.exports = function (eleventyConfig) { /* Markdown Overrides */ let markdownLibrary = markdownIt({ html: true, + linkify: true, }) .use(markdownItAnchor, markdownItAnchorOptions) .use(require("markdown-it-attribution"))