update readme

This commit is contained in:
张磊 2018-11-26 17:50:25 +08:00
parent 664ce24f57
commit 618fb14dd6
2 changed files with 2 additions and 2 deletions

File diff suppressed because one or more lines are too long

View File

@ -16,7 +16,7 @@
const html = `<table><tbody>
${arr.map(subArr => {
let tds = subArr.map(info => {
return `<td><a target="_blank" style="display:inline-block;border: 1px solid #94D75D;width:64px;border-radius: 50%;height:64px;" href="https://github.com${info.author.path}"><img style="width:60px;height:60px;border-radius: 50%;position: relative;top: 2px;left: 2px;" src="${info.author.avatar}"></a></td>`
return `<td><a target="_blank" href="https://github.com${info.author.path}"><img width="60px" height="60px" src="${info.author.avatar}"></a></td>`
})
return `<tr>${tds.join('')}</tr>`
}).join('')}</tbody></table>`