File tree 3 files changed +2
-3
lines changed
3 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -29170,7 +29170,7 @@ function commentToMarkdown(comment) {
29170
29170
.map(line => `> ${line}`)
29171
29171
.join("\n");
29172
29172
const handleLink = `[@${comment.user}](https://github.com/${comment.user})`;
29173
- return `${quotedComment}\n\n -${handleLink}`;
29173
+ return `${quotedComment}\n-${handleLink}`;
29174
29174
}
29175
29175
function createGuestbookList(comments) {
29176
29176
return comments.map(commentToMarkdown).join("\n\n");
Original file line number Diff line number Diff line change @@ -4,6 +4,5 @@ This guestbook is populated by approved :+1: comments in https://github.com/josh
4
4
5
5
<!-- START:guestbook-->
6
6
> Hello, this is an informative and useful comment illustrating my thoughts. 🧀
7
-
8
7
-[ @joshmgross ] ( https://github.com/joshmgross )
9
8
<!-- END:guestbook-->
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ function commentToMarkdown(comment: Comment): string {
22
22
23
23
const handleLink = `[@${ comment . user } ](https://github.com/${ comment . user } )` ;
24
24
25
- return `${ quotedComment } \n\n -${ handleLink } ` ;
25
+ return `${ quotedComment } \n-${ handleLink } ` ;
26
26
}
27
27
28
28
function createGuestbookList ( comments : Comment [ ] ) : string {
You can’t perform that action at this time.
0 commit comments