How do I work with Obsidian on Mobile?

I was going to ask whether (and how) Epsilon Notes really supported Obsidian wiki-style links, but I think I figured it out how to make it happen. Here’s what I did:

In Epison Notes > Preferences > Compatibility processor, paste the following as plain text (to preserve line breaks):

// Obsidian Compatibility
// Replace embeds with links:
\!\[\[([^\]]+)\]\]
[$1]($1)
// Convert piped links (even in tables):
\[\[([^\\\]]+)(?:\\)*\|([^\]]+)\]\]
[$2]($1)
// Convert normal links:
\[\[([^\]]+)\]\]
[$1]($1)
// Allow spaces within links and filenames:
(?<=\]\([^\(\)\n]{0,1024}) (?=[^\(\)\n]{0,1024}\))
%20

Relevant Epsilon documentation is here, specifically compatibility processor and spaces in links. The above could probably be improved, but so far it’s working for me.

As for cloud syncing, I’m currently using DriveSync (AutoSync for Google Drive).

16 Likes