How to make this filter dynamic to the current note name?
filters:
and:
- or:
- area.contains(link("test"))
This works, but its not dynamic. I need to hardcore the property value.
I had this working:
filters:
and:
- or:
- file.hasLink(this)
- file.hasLink(this.file.name.replace('.base', '.md'))
but it brings any note that has a link that matches my current file name.
I need to narrow it down to match a specific property.
Any ideas? Thanks!