My directory structure is as follows:
Write md file in vscode, insert picture and preview normally.
I use github to publish to cloudflare pages, but the image rendering is not normal.
The md source code loads images from the current directory:
*.MD

After rendering:
src=“image/0801_git/1706934953124.png”
When published to cloudflare, the actual image path is:
/post/202312/image/0801_git/1706934953124.png

The added post is fixed. I have added it through render-image.html. How to add the second directory?
<p class="md__image">
<img src="/post/{{ .Destination | safeURL }}" alt="{{ .Text }}" {{ with .Title }} title="{{ .Text }}" {{ end }} />
</p>
