File tree Expand file tree Collapse file tree 3 files changed +2
-3
lines changed Expand file tree Collapse file tree 3 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -29170,7 +29170,7 @@ function commentToMarkdown(comment) {
2917029170 .map(line => `> ${line}`)
2917129171 .join("\n");
2917229172 const handleLink = `[@${comment.user}](https://github.com/${comment.user})`;
29173- return `${quotedComment}\n\n -${handleLink}`;
29173+ return `${quotedComment}\n-${handleLink}`;
2917429174}
2917529175function createGuestbookList(comments) {
2917629176 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
44
55<!-- START:guestbook-->
66> Hello, this is an informative and useful comment illustrating my thoughts. π§
7-
87 -[ @joshmgross ] ( https://github.com/joshmgross )
98<!-- END:guestbook-->
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ function commentToMarkdown(comment: Comment): string {
2222
2323 const handleLink = `[@${ comment . user } ](https://github.com/${ comment . user } )` ;
2424
25- return `${ quotedComment } \n\n -${ handleLink } ` ;
25+ return `${ quotedComment } \n-${ handleLink } ` ;
2626}
2727
2828function createGuestbookList ( comments : Comment [ ] ) : string {
You canβt perform that action at this time.
0 commit comments