File tree 2 files changed +4
-6
lines changed
2 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -9480,9 +9480,8 @@ function writeReadme(path, content) {
9480
9480
fs . writeFileSync ( path , content ) ;
9481
9481
}
9482
9482
function commentToMarkdown ( comment ) {
9483
- return `> ${ comment . text } \n
9484
- > -[@${ comment . user } ](https://github.com/${ comment . user } )
9485
- <sup>[src](${ comment . url } )</sup>` ;
9483
+ return `> ${ comment . text }
9484
+ > -[@${ comment . user } ](https://github.com/${ comment . user } )` ;
9486
9485
}
9487
9486
function createGuestbookList ( comments ) {
9488
9487
return comments . map ( commentToMarkdown ) . join ( "\n\n" ) ;
Original file line number Diff line number Diff line change @@ -15,9 +15,8 @@ function writeReadme(path: string, content: string): void {
15
15
}
16
16
17
17
function commentToMarkdown ( comment : Comment ) : string {
18
- return `> ${ comment . text } \n
19
- > -[@${ comment . user } ](https://github.com/${ comment . user } )
20
- <sup>[src](${ comment . url } )</sup>` ;
18
+ return `> ${ comment . text }
19
+ > -[@${ comment . user } ](https://github.com/${ comment . user } )` ;
21
20
}
22
21
23
22
function createGuestbookList ( comments : Comment [ ] ) : string {
You canβt perform that action at this time.
0 commit comments