diff --git a/src/generate/__tests__/__snapshots__/index.js.snap b/src/generate/__tests__/__snapshots__/index.js.snap
index 860d71f..74d677a 100644
--- a/src/generate/__tests__/__snapshots__/index.js.snap
+++ b/src/generate/__tests__/__snapshots__/index.js.snap
@@ -9,7 +9,13 @@ Description
These people contributed to the project:
-
Kent C. Dodds is awesome! | Divjot Singh is awesome! | Jeroen Engels is awesome! |
+
+
+ Kent C. Dodds is awesome! |
+ Divjot Singh is awesome! |
+ Jeroen Engels is awesome! |
+
+
@@ -25,7 +31,19 @@ Description
These people contributed to the project:
-Kent C. Dodds is awesome! | Kent C. Dodds is awesome! | Kent C. Dodds is awesome! | Kent C. Dodds is awesome! | Kent C. Dodds is awesome! |
Kent C. Dodds is awesome! | Kent C. Dodds is awesome! |
+
+
+ Kent C. Dodds is awesome! |
+ Kent C. Dodds is awesome! |
+ Kent C. Dodds is awesome! |
+ Kent C. Dodds is awesome! |
+ Kent C. Dodds is awesome! |
+
+
+ Kent C. Dodds is awesome! |
+ Kent C. Dodds is awesome! |
+
+
diff --git a/src/generate/index.js b/src/generate/index.js
index d6d1b3c..5fd0b9a 100644
--- a/src/generate/index.js
+++ b/src/generate/index.js
@@ -36,7 +36,9 @@ function injectListBetweenTags(newContent) {
}
function formatLine(contributors) {
- return `${contributors.join(' | ')} | `
+ return `${contributors.join(
+ ' | \n ',
+ )} | `
}
function generateContributorsList(options, contributors) {
@@ -46,9 +48,9 @@ function generateContributorsList(options, contributors) {
}),
_.chunk(options.contributorsPerLine),
_.map(formatLine),
- _.join(''),
+ _.join('\n
\n \n '),
newContent => {
- return `\n\n\n`
+ return `\n\n\n`
},
)(contributors)
}