obsidian-raindrop icon indicating copy to clipboard operation
obsidian-raindrop copied to clipboard

Daily Bookmarks

Open fabiocodeca opened this issue 2 years ago • 5 comments

Hi. I cannot get the daily bookmarks working. Any suggestions or ideas on what it should be turned on to make it work?

Thanks

fabiocodeca avatar Jan 20 '23 08:01 fabiocodeca

Basically, {{DATE:yyyy-MM-DD}} doesn't seem to work.

cs-mshah avatar Feb 08 '23 06:02 cs-mshah

Yeah I could not get it to work either. But, for example this works: search: created:>{{DATE:yyyy-MM-DD}}

erauner12 avatar Feb 20 '23 13:02 erauner12

To get it working, include a "collection:" specification. e.g.

```raindrop collection: 0
search: created:{{DATE:yyyy-MM-DD}} ```

Where {{DATE:yyyy-MM-DD}} is actually a directive for your templating engine to substitute the date. In my case, I use Templater(https://github.com/SilentVoid13/Templater), so it works like this:

#### Today's Bookmarks ```raindrop collection: 0 format: table search: created:<%tp.date.now("YYYY-MM-DD")%> ```

shaundewberry avatar Mar 22 '23 08:03 shaundewberry

Even I use templater, but that snippet doesn't show just today's bookmarks. It shows some previous ones too for me.

cs-mshah avatar Mar 24 '23 18:03 cs-mshah

Even I use templater, but that snippet doesn't show just today's bookmarks. It shows some previous ones too for me.

Yeah I've noticed this as well. It does not work how you would expect. Instead, it excludes everything before the provided created date (based on my experience with it). Is anyone else experiencing the same?

erauner12 avatar Mar 24 '23 21:03 erauner12