From 8771842fed6314500fd9aea7a0af87c82399dd28 Mon Sep 17 00:00:00 2001
From: Zach Leatherman <zachleatherman@gmail.com>
Date: Fri, 13 May 2022 16:10:00 -0500
Subject: [PATCH] Update deps

---
 .eleventy.js | 8 +++++---
 package.json | 8 ++++----
 2 files changed, 9 insertions(+), 7 deletions(-)

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"
   }
 }