From 95bc27aa0fcd2263b4ceccab4f09132c6bb5e1cc Mon Sep 17 00:00:00 2001 From: Oliver Speir <115520730+OliverSpeir@users.noreply.github.com> Date: Mon, 29 Jan 2024 12:32:47 -0700 Subject: [PATCH] Update young-eyes-film.md Co-authored-by: Sarah Rainsberger --- .changeset/young-eyes-film.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.changeset/young-eyes-film.md b/.changeset/young-eyes-film.md index 707f8b84be40..092da9882d52 100644 --- a/.changeset/young-eyes-film.md +++ b/.changeset/young-eyes-film.md @@ -2,4 +2,14 @@ "astro": minor --- -Enable users to use `![](img.png)` syntax for images in their collection folder +Fixes an issue where images in Markdown required a relative specifier (e.g. `./`) + +Now, you can use the standard `![](img.png)` syntax in Markdown files for images colocated in the same folder: no relative specifier required! + +There is no need to update your project; your existing images will still continue to work. However, you may wish to remove any relative specifiers from these Markdown images as they are no longer necessary: + +```diff +- ![A cute dog](./dog.jpg) ++ ![A cute dog](dog.jpg) + +```