[Feature] Obsidian and Drafts (iOS) – possible combination yet?

For a long time, I’ve used Drafts for quick capture on my iPhone. I haven’t yet found a way to get notes from Drafts into Obsidian. Drafts can’t save directly to Obsidian Sync, for obvious reasons, and doesn’t have access to Obsidian’s folder if iCloud Drive is used for syncing.

Has anyone found a solution?

1 Like

You can use Drafts to append to a file — does that not do what you want? (You can also create new notes in Obsidian from Drafts with the URL scheme.)

1 Like

Both create and append. Had missed that Obsidian have a URL scheme. Is it the same as on desktop?

Yes the same URI scheme works on both iOS and desktop/laptop (I think it assumes you have at one point opened the same vault on both). Here’s what I use, though I forget where I got it from:

const cd = Credential.create("Obsidian", "Obsidian")
cd.addTextField("Vault", "_Vault - LLTB")
cd.authorize()

const URL = draft.processTemplate(`obsidian://new?vault={{${cd.getValue("Vault")}}}&name={{[[display_title]]}}&content={{[[body]]}}`)
app.openURL(URL)
2 Likes

Here’s a built action in the Drafts directory.

2 Likes

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.