Skip to content

Commit c1cd66b

Browse files
authored
Prevent double newline after heading atx-headline.qml
1 parent bf69bc9 commit c1cd66b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

atx-headline/atx-headline.qml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ QtObject {
1818
* @return {string} the headline of the note
1919
*/
2020
function handleNewNoteHeadlineHook(headline) {
21-
var text = "# " + headline + "\n";
21+
var text = "# " + headline;
2222

2323
return text;
2424
}

0 commit comments

Comments
 (0)