Skip to content

Commit eeacb94

Browse files
committed
Adjust handle spacing
1 parent 09cdc3c commit eeacb94

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

Diff for: dist/index.js

+1-1
Original file line numberDiff line numberDiff 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
}
2917529175
function createGuestbookList(comments) {
2917629176
return comments.map(commentToMarkdown).join("\n\n");

Diff for: guestbook.md

-1
Original file line numberDiff line numberDiff 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-->

Diff for: src/book.ts

+1-1
Original file line numberDiff line numberDiff 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

2828
function createGuestbookList(comments: Comment[]): string {

0 commit comments

Comments
 (0)