Make URL links clickable (#317)

This commit is contained in:
Ole Eskild Steensen 2023-06-26 16:33:26 +02:00
parent 0a067cc87f
commit bda59556a2

View File

@ -38,6 +38,7 @@ module.exports = function (eleventyConfig) {
let markdownLib = markdownIt({ let markdownLib = markdownIt({
breaks: true, breaks: true,
html: true, html: true,
linkify: true,
}) })
.use(require("markdown-it-anchor"), { .use(require("markdown-it-anchor"), {
slugify: headerToId, slugify: headerToId,