You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It looks like this is almost working (in your latest GitHub release). Its just that the url to bear needs UTF8 encoding (to replace spaces with %20). Happy to attach pull request, but it seems to work with two quick changes:
Replaced the bash code following the bst script filter with:
Add UTF8 encoding (to replace spaces with %20) to `utl` command.
1. Replace the bash code following the `bst` script filter with:
```bash
query="{query}"
if [[ $query == ":t:"* ]]; then
printf "bear://x-callback-url/open-tag?name=%s" "${query:3}"
else
printf "bear://x-callback-url/open-note?id=%s" "${query:3}"
fi
```
2. Fedd the output of this into a new 'Open URL' block.
My regex-fu is not quite strong enough to make this easy. Need to figure out how best to support multi-word tags without screwing everything up.
The text was updated successfully, but these errors were encountered: