Skip to content

Instantly share code, notes, and snippets.

@iaindooley
Created February 12, 2021 06:05
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/afb8982e1c864b202bf4d6b0080759db to your computer and use it in GitHub Desktop.
Save iaindooley/afb8982e1c864b202bf4d6b0080759db to your computer and use it in GitHub Desktop.
Checklist items as text
new Trellinator().board("My Board Name")
.cards().each(function(card)
{
console.log(card.name()+" ("+card.link()+")\n");
card.checklists().each(function(cl)
{
console.log(" - "+cl.name()+"\n");
cl.items().each(function(item)
{
console.log(" -- "+item.name()+"\n");
});
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment