From 10a2a854d2ab247befc6dd151d952125edcc10ba Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Mon, 13 Mar 2023 16:37:58 -0700 Subject: [PATCH] markdown filter --- .eleventy.js | 9 ++++++++- src/index.html | 2 +- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/.eleventy.js b/.eleventy.js index 2e127b02..405c53d9 100644 --- a/.eleventy.js +++ b/.eleventy.js @@ -50,6 +50,9 @@ module.exports = function (eleventyConfig) { excerpt_separator: '', }) + // md instance + const md = markdownIt({ html: true, linkify: true }) + // enable us to iterate over all the tags, excluding posts and all eleventyConfig.addCollection('tagList', (collection) => { const tagsSet = new Set() @@ -62,7 +65,6 @@ module.exports = function (eleventyConfig) { return Array.from(tagsSet).sort() }) - const md = markdownIt({ html: true, linkify: true }) md.use(markdownItAnchor, { level: [1, 2], permalink: markdownItAnchor.permalink.headerLink({ @@ -73,6 +75,11 @@ module.exports = function (eleventyConfig) { md.use(markdownItFootnote) eleventyConfig.setLibrary('md', md) + // markdown filter + eleventyConfig.addLiquidFilter("markdown", (content) => { + return md.render(content); +}); + // asset_img shortcode eleventyConfig.addLiquidShortcode('asset_img', (filename, alt) => { return `${alt}` diff --git a/src/index.html b/src/index.html index 7495da50..ed7fa33e 100644 --- a/src/index.html +++ b/src/index.html @@ -20,7 +20,7 @@ pagination:
{{ post.date | date: "%m.%d.%Y" }}
-

{{ post.data.post_excerpt | markdownify }}

+

{{ post.data.post_excerpt | markdown }}

Read more →