(d)
| 111 | return ['<a href="%s">%s</a>' % (d['url'], d['title'].split('/')[-1]), d['stars_unparsed'], d['desc']] |
| 112 | |
| 113 | def build_md_fields(d): |
| 114 | return ['[%s](%s)' % (d['title'].split('/')[-1], d['url']), d['stars_unparsed'], d['desc']] |
| 115 | |
| 116 | html = '<table><thead><tr><td>Project Name</td><td>Stars</td><td>Description</td></tr></thead>' |
| 117 | md = '| Project Name | Stars | Description |\n| ------- | ------ | ------ |\n' |