From 9af8455de87927c3203d2452c7eae4eab798119f Mon Sep 17 00:00:00 2001 From: Lewis Dale Date: Sun, 19 Mar 2023 20:36:15 +0000 Subject: [PATCH] Attempt to load images from filesystem instead of url so we can take advantage of 11ty-img --- src/blog/post.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/blog/post.html b/src/blog/post.html index 395e686..d789fe0 100644 --- a/src/blog/post.html +++ b/src/blog/post.html @@ -8,4 +8,4 @@ eleventyComputed: permalink: "post/{{ post.slug }}/" --- -{{ post.markdown | md | safe }} \ No newline at end of file +{{ post.markdown | replace("https://cms.lewisdale.dev/wp-content/", "/var/www/wordpress/") | md | safe }} \ No newline at end of file