Flutter-Bounty-Hunters / static_shock

A static site generator for Dart.
MIT License
59 stars 5 forks source link

[Shock] - Support generic page search #67

Open matthew-carroll opened 6 months ago

matthew-carroll commented 6 months ago

Add support for convenient and expression-based page searches like Lume: https://lume.land/plugins/search/

Some examples:

search.pages("flutter dart") // All pages tagged with "flutter" or "dart"

search.pages("flutter !dart") // All pages tagged with "flutter" but NOT tagged with "dart"

search.pages("flutter", orderBy: "title=asc date=desc") // All pages tagged with "flutter", ordered first by title (ascending) and then by date (descending)

search.pages("flutter", limitTo: 10) // The first 10 pages tagged with "flutter"

search.pages("flutter", limitTo: -10) // The LAST 10 pages tagged with "flutter"

search.pages("draft=true author='Matthew Carroll'") // All pages with draft set to true, and with an author property equal to "Matthew Carroll"