mirror of
https://github.com/all-contributors/cli.git
synced 2025-01-09 13:36:29 +00:00
fix: incorrect usage of tbody
(#311)
This commit is contained in:
parent
5df6b47f8a
commit
531b7e1c4a
2 changed files with 3 additions and 3 deletions
|
@ -17,7 +17,7 @@ These people contributed to the project:
|
||||||
<td align=\\"center\\">Divjot Singh is awesome!</td>
|
<td align=\\"center\\">Divjot Singh is awesome!</td>
|
||||||
<td align=\\"center\\">Jeroen Engels is awesome!</td>
|
<td align=\\"center\\">Jeroen Engels is awesome!</td>
|
||||||
</tr>
|
</tr>
|
||||||
</tobdy>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
<!-- markdownlint-restore -->
|
<!-- markdownlint-restore -->
|
||||||
|
@ -51,7 +51,7 @@ These people contributed to the project:
|
||||||
<td align=\\"center\\">Kent C. Dodds is awesome!</td>
|
<td align=\\"center\\">Kent C. Dodds is awesome!</td>
|
||||||
<td align=\\"center\\">Kent C. Dodds is awesome!</td>
|
<td align=\\"center\\">Kent C. Dodds is awesome!</td>
|
||||||
</tr>
|
</tr>
|
||||||
</tobdy>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
<!-- markdownlint-restore -->
|
<!-- markdownlint-restore -->
|
||||||
|
|
|
@ -58,7 +58,7 @@ function generateContributorsList(options, contributors) {
|
||||||
_.map(formatLine),
|
_.map(formatLine),
|
||||||
_.join('\n </tr>\n <tr>\n '),
|
_.join('\n </tr>\n <tr>\n '),
|
||||||
newContent => {
|
newContent => {
|
||||||
return `\n<table>\n <tbody>\n <tr>\n ${newContent}\n </tr>\n </tobdy>\n</table>\n\n`
|
return `\n<table>\n <tbody>\n <tr>\n ${newContent}\n </tr>\n </tbody>\n</table>\n\n`
|
||||||
},
|
},
|
||||||
)(contributors)
|
)(contributors)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue