I'm using Obsidian and want to build an Obsidian URL for a note. The vault and folder are fixed.
The idea is to concatenate this text: obsidian://open?vault=VaultName&file=%3DPeople%2F
with my encoded name: "John%20Smith", in the variable LocalEncodedName
I'm doing this with the Set Variable action, like so:
obsidian://open?vault=VaultName&file=%3DPeople%2F%Variable%LocalEncodedName%
Desired: obsidian://open?vault=VaultName&file=%3DPeople%2FJohn%20Smith
Actual: obsidian://open?vault=VaultName&file=%3DPeople/VariableJohn%20Smith
It's like I need to escape the variable somehow while setting it. And yes, my People folder is actually =People, so when I'm searching for a person, it's CMD+O then = and it filters all the notes to just those in the =People folder.
Any ideas?