I am using the iOS app with the Wikilinks setting turned off. I’m new to Obsidian, but have been using markdown for my notes for a while and don’t wish to convert all my links to the wikilinks style.
What I’m trying to do
I like to use links to other markdown files in the format
[[link]](/file.md)
With Wikilinks turned off, I would expect this to display
[link]
in reading mode. At least, that’s how it is rendered using pandoc, python-markdown, or on online git repos like bitbucket.org. Instead it shows on the iOS app as
link(/file.md)
So I have lost the square parentheses [] around the “link” text, and it still shows the (/file.md) part which is ugly (especially for long file names).
Things I have tried
Inserting spaces like this [ [link] ](/file.md). This simply displays the whole thing in plain text in reader mode and the link no longer works.
Turning wikilinks back on. This doesn’t seem to change anything. I still see “link(/file.md)” in the live preview mode.
I was hoping there was just a setting I had missed, but if this is the expected behavior of Obsidian and I haven’t missed anything, then I would like to make a feature request. Using the wikilinks features as intended by removing the explicit (/file.md) breaks my notes when opened in other environments, so I don’t want to go down that route at all.
If anyone could give me some pointers I’d really appreciate it! Thanks.
I think this is a bug. Could you file a bug report? You can copy-paste parts of this post as needed but please follow the bug report template.
I confirmed the behavior on iPadOS and Mac. A few more things I noticed, which you’re welcome to include in the report, or I can copy them into a comment on it:
Looks the same in Reading View.
Removing the leading slash on the path doesn’t help.
Adding the brackets to the text of a working link produces the same behavior.
The help documentation on supported internal links lists only two formats.
Even with the “use [[Wikilinks]]” setting off, you can ignore the Markdown link auto-complete and still manually type [[mynote]]; the link will work fine.
Because Obsidian recognizes both [[wikilinks]] and [markdown](links.md) mixed together in notes, you are going to have a problem trying to use [[link]](/file.md) with the extra brackets. Seems the parser sees it as an wikilink and ignores everything after the last ]
then there is no issue with escaping the last ] anymore – that is, the image displays fine without any extra text being displayed. However the link doesn’t work when clicking the image! But that’s probably a separate discussion on whether that’s a good idea or not!
The following syntax works to add a link to an image:
[](https://en.wikipedia.org/wiki/Cat)
Oh you’re right! I was mistaken, the example I gave works fine – I had missed the little external link icon and expected that clicking on the picture would open the URL, but it instead just makes the picture pop out in the foreground of the phone screen.
That seems fine in LivePreview mode for external links (if you click right on the outgoing link icon), but I was trying with internal links in Live Preview.