obsidian-custom-sort icon indicating copy to clipboard operation
obsidian-custom-sort copied to clipboard

#195 - support for metadata value matchers

Open SebastianMC opened this issue 11 months ago • 0 comments

  • implementation completed, tested locally on a dedicated vault
  • need to create unit tests for the new and modified areas before release

Sample syntax from test vault:

---
sorting-spec: |
  with-metadata: biblio status matching: value(unread)
  with-metadata: biblio status matching: value(reading)
  with-metadata: biblio status matching: value(complete)
  def
---
---
sorting-spec: |
  separator top
  with-metadata: n n matching: range(,123)
  separator 123
  with-metadata: n n matching: range[123,456]
  separator 456
  with-metadata: n n matching: range(456,)
  separator end
---

SebastianMC avatar Feb 16 '25 20:02 SebastianMC