Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix list_contains (a.k.a. the ~= mapcss operator) with whitespace after the ; #2330

Merged
merged 2 commits into from
Sep 14, 2024

Commits on Sep 13, 2024

  1. Add test cases

    Famlam committed Sep 13, 2024
    Configuration menu
    Copy the full SHA
    e9e265e View commit details
    Browse the repository at this point in the history
  2. Fix list_contains (a.k.a. the ~= mapcss operator)

    The ~= operator also allows for whitespace around the values.
    E.g. [a~=y] matches
    - a=y
    - a=x;y;z
    - a=x; y; z
    The latter wasn't working with the original implementation
    Famlam committed Sep 13, 2024
    Configuration menu
    Copy the full SHA
    c4ea622 View commit details
    Browse the repository at this point in the history