Description
Typora's Auto move image folder works when the custom image folder is configured as:
For example, renaming foo.md to bar.md also renames foo.assets/ to bar.assets/ and updates the image references.
However, the same behavior does not work when ${filename} is a subdirectory of a shared assets folder:
Steps to reproduce
-
Open Preferences → Image.
-
Set Copy image to custom folder to:
-
Create this structure:
foo.md
assets/
foo/
image.png
-
Add this image reference to foo.md:

-
Rename foo.md to bar.md using Typora's file-tree sidebar.
Actual behavior
The Markdown file is renamed, but:
assets/foo/ is not renamed.
- Typora does not prompt to move the image folder.
- The image reference is not updated.
Expected behavior
Because the configured image path contains ${filename}, Typora should offer to:
foo.md → bar.md
assets/foo/ → assets/bar/
and update the reference to:

Comparison
Using ${filename}.assets works as expected, while ./assets/${filename} does not.
Could Typora support filename-linked image directories nested inside a shared assets directory, or document this limitation?
Description
Typora's Auto move image folder works when the custom image folder is configured as:
For example, renaming
foo.mdtobar.mdalso renamesfoo.assets/tobar.assets/and updates the image references.However, the same behavior does not work when
${filename}is a subdirectory of a shared assets folder:Steps to reproduce
Open Preferences → Image.
Set Copy image to custom folder to:
Create this structure:
Add this image reference to
foo.md:Rename
foo.mdtobar.mdusing Typora's file-tree sidebar.Actual behavior
The Markdown file is renamed, but:
assets/foo/is not renamed.Expected behavior
Because the configured image path contains
${filename}, Typora should offer to:and update the reference to:
Comparison
Using
${filename}.assetsworks as expected, while./assets/${filename}does not.Could Typora support filename-linked image directories nested inside a shared assets directory, or document this limitation?