diff --git a/.eleventy.js b/.eleventy.js index f78dca3..5801bc9 100644 --- a/.eleventy.js +++ b/.eleventy.js @@ -1,10 +1,12 @@ -const { DateTime } = require("luxon"); const fs = require("fs"); + +const { DateTime } = require("luxon"); +const markdownIt = require("markdown-it"); +const markdownItAnchor = require("markdown-it-anchor"); + const pluginRss = require("@11ty/eleventy-plugin-rss"); const pluginSyntaxHighlight = require("@11ty/eleventy-plugin-syntaxhighlight"); const pluginNavigation = require("@11ty/eleventy-navigation"); -const markdownIt = require("markdown-it"); -const markdownItAnchor = require("markdown-it-anchor"); module.exports = function(eleventyConfig) { // Copy the `img` and `css` folders to the output diff --git a/package.json b/package.json index 07df356..8984142 100644 --- a/package.json +++ b/package.json @@ -26,11 +26,11 @@ "homepage": "https://github.com/11ty/eleventy-base-blog#readme", "dependencies": { "@11ty/eleventy": "^1.0.1", - "@11ty/eleventy-navigation": "^0.3.2", + "@11ty/eleventy-navigation": "^0.3.3", "@11ty/eleventy-plugin-rss": "^1.1.2", "@11ty/eleventy-plugin-syntaxhighlight": "^4.0.0", - "luxon": "^2.3.1", - "markdown-it": "^12.3.2", - "markdown-it-anchor": "^8.4.1" + "luxon": "^2.4.0", + "markdown-it": "^13.0.1", + "markdown-it-anchor": "^8.6.4" } }