Open a vault. Open settings. Under “Files and Links” turn off ‘Use Wikilinks’ so a markdown style link is created. Open a note, and drag in an image file containing spaces. Examine the underlying file.
Did you follow the troubleshooting guide? [Y/N]
Y
Expected result
The markdown link should be represented using the form:
[](<Path To File With Spaces>)
The angle brackets are used to escape a filename containing spaces by all markdown implementations respecting the common mark standard (can provide a link).
Actual result
The markdown will be represented using the form:
[](Path To File With Spaces)
Environment
SYSTEM INFO:
Obsidian version: v1.10.3
Installer version: v1.10.3
Operating system: Windows 10 Pro 10.0.19045
Login status: not logged in
Language: en
Insider build toggle: off
Live preview: on
Base theme: adapt to system
Community theme: none
Snippets enabled: 0
Restricted mode: on
Encoding them this way in this particular context doesn’t seem to be compliant with how Markdown is being used elsewhere. See example 485 in the latest commonmark spec.