Skip to content

Commit

Permalink
Adjust handle spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
joshmgross committed Sep 26, 2024
1 parent 09cdc3c commit eeacb94
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -29170,7 +29170,7 @@ function commentToMarkdown(comment) {
.map(line => `> ${line}`)
.join("\n");
const handleLink = `[@${comment.user}](https://github.com/${comment.user})`;
return `${quotedComment}\n\n-${handleLink}`;
return `${quotedComment}\n-${handleLink}`;
}
function createGuestbookList(comments) {
return comments.map(commentToMarkdown).join("\n\n");
Expand Down
1 change: 0 additions & 1 deletion guestbook.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,5 @@ This guestbook is populated by approved :+1: comments in https://github.com/josh

<!--START:guestbook-->
> Hello, this is an informative and useful comment illustrating my thoughts. 🧀
-[@joshmgross](https://github.com/joshmgross)
<!--END:guestbook-->
2 changes: 1 addition & 1 deletion src/book.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ function commentToMarkdown(comment: Comment): string {

const handleLink = `[@${comment.user}](https://github.com/${comment.user})`;

return `${quotedComment}\n\n-${handleLink}`;
return `${quotedComment}\n-${handleLink}`;
}

function createGuestbookList(comments: Comment[]): string {
Expand Down

0 comments on commit eeacb94

Please sign in to comment.