From 8947a1190775d2283ff965d1c9632613fa13741a Mon Sep 17 00:00:00 2001 From: kageru Date: Tue, 26 Sep 2023 13:44:57 +0200 Subject: [PATCH] document regex search --- static/help.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/static/help.html b/static/help.html index 5128e5d..66a1b3d 100644 --- a/static/help.html +++ b/static/help.html @@ -31,7 +31,9 @@ The following search operators are supported:
  • Comparisons (<, >, <=, >=) check if the value is less than, greater than, less than or equal, and greater than or equal to your search. atk>=4000 will show all cards with an ATK of at least 4000. These operators do not work for text fields.

  • -It is possible to filter for multiple values at once, e.g. level:3|6|9 to find all cards that are level 3, 6, or 9.

    +

    It is possible to filter for multiple values at once, e.g. level:3|6|9 to find all cards that are level 3, 6, or 9.

    +

    Searching by regex is supported. Simply put the search string in slashes, i.e. o:/draw \d+ card/. No regex flags can be passed, but i (case-insensitive) is enabled by default.

    +

    Examples