mirror of
https://github.com/withastro/astro.git
synced 2025-03-03 22:57:08 -05:00
15 lines
572 B
Markdown
15 lines
572 B
Markdown
---
|
|
"astro": patch
|
|
---
|
|
|
|
Fixes an issue where images in MD required a relative specifier (e.g. `./`)
|
|
|
|
Now, you can use the standard `` syntax in MD 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 MD images as they are no longer necessary:
|
|
|
|
```diff
|
|
- 
|
|
+ 
|
|
<!-- This dog lives in the same folder as my article! -->
|
|
```
|