Skip to content

v1.5.1

Choose a tag to compare

@lazykern lazykern released this 28 Mar 09:56
· 180 commits to main since this release

Template

  • Add icontains for case-insensitive substring matching in Handlebars templates alongside the existing contains and regex helpers

Examples

{{#if (contains player "Spotify")}}exact case{{/if}}
{{#if (icontains player "spotify")}}case-insensitive{{/if}}
{{#if (regex_is_match pattern="(?i)spotify" on=player)}}regex case-insensitive{{/if}}