Skip to content

Instantly share code, notes, and snippets.

@iaindooley
Last active August 12, 2021 23:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iaindooley/fd22d1a675199e2ba5d70021503923d9 to your computer and use it in GitHub Desktop.
Save iaindooley/fd22d1a675199e2ba5d70021503923d9 to your computer and use it in GitHub Desktop.
Search for words
var search = "Triad";//change this when you run it
new Trellinator().board("My Board").cards().each(function(card)
{
if(card.description().toLowerCase().indexOf(search.toLowerCase()) > -1)
{
card.addLabel(search);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment