{{ $user := .Get 0 }} {{ $playlist_id := .Get 1 }} {{ $playlist := getJSON "https://spotify-public-proxy.herokuapp.com/v1/users/" $user "/playlists/" $playlist_id }}

{{ $playlist.name }}

{{ range sort $playlist.tracks.items "track.name" }} {{ with .track }} {{ with index (last 1 .album.images) 0 }} {{ end }} {{ end }} {{ end }}
Track Artist Album
{{ .name }} {{ range $i, $e := .artists }}{{ if $i }}, {{ end }}{{ .name }}{{ end }} {{ .album.name }}