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 ``
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.data.post_excerpt | markdownify }}
+{{ post.data.post_excerpt | markdown }}