diff --git a/content/blog/2024-09-13-02-phposting/index.md b/content/blog/2024-09-13-02-phposting/index.md index 5b76f84..d769080 100644 --- a/content/blog/2024-09-13-02-phposting/index.md +++ b/content/blog/2024-09-13-02-phposting/index.md @@ -13,7 +13,7 @@ Wow, posting on my phone kinda sucks. My current workflow: - use **cx file explorer** to view the network drive, upload images, and write a text file (YOU ARE HERE) -{% image "./screenshot.png", "screenshot of this post in a text editor" %} +![a screenshot of a text editor](./screenshot.png) - go back to termux and push the updated files diff --git a/eleventy.config.js b/eleventy.config.js index 9eeaf09..b74d1ba 100644 --- a/eleventy.config.js +++ b/eleventy.config.js @@ -18,16 +18,17 @@ module.exports = function(eleventyConfig) { "./public/": "/", "./node_modules/prismjs/themes/prism-okaidia.css": "/css/prism-okaidia.css" }); + eleventyConfig.addPassthroughCopy("**/*.png"); // Run Eleventy when these files change: // https://www.11ty.dev/docs/watch-serve/#add-your-own-watch-targets // Watch content images for the image pipeline. - eleventyConfig.addWatchTarget("content/**/*.{svg,webp,png,jpeg}"); + // eleventyConfig.addWatchTarget("content/**/*.{svg,webp,png,jpeg}"); // App plugins eleventyConfig.addPlugin(pluginDrafts); - eleventyConfig.addPlugin(pluginImages); + // eleventyConfig.addPlugin(pluginImages); // Official plugins eleventyConfig.addPlugin(pluginRss);