Add link to each card

This commit is contained in:
Glenn Y. Rolland 2018-11-22 16:54:52 +01:00
parent c9c6032a00
commit 0aac42789f

View file

@ -104,7 +104,7 @@ func (board *TrelloBoard) ExportToMarkdown() string {
log.Panic(err)
}
for _, card := range cards {
text := fmt.Sprintf("* %s\n", card.Name)
text := fmt.Sprintf("* %s ([link](%s))\n", card.Name, card.Url)
markdown.WriteString(text)
}
}